import 'dart:io'; class AttachFile { File orderFile; File storageFile; String action; AttachFile({this.orderFile, this.storageFile}); @override String toString() { return 'AttachFile{orderFile:$orderFile, storageFile:$storageFile}'; } }