FileInfo constructor

const FileInfo({
  1. required int category,
  2. required int fsId,
  3. required int isdir,
  4. required int localCtime,
  5. required int localMtime,
  6. required String md5,
  7. required String path,
  8. required int serverCtime,
  9. required int serverMtime,
  10. required int size,
})

Implementation

const FileInfo({
  required this.category,
  required this.fsId,
  required this.isdir,
  required this.localCtime,
  required this.localMtime,
  required this.md5,
  required this.path,
  required this.serverCtime,
  required this.serverMtime,
  required this.size,
});