CategoryItem constructor

const CategoryItem({
  1. required int category,
  2. required int fsId,
  3. required int isdir,
  4. required String md5,
  5. required String path,
  6. required int serverCtime,
  7. required String serverFilename,
  8. required int serverMtime,
  9. required int size,
  10. MediaThumb? thumbs,
})

Implementation

const CategoryItem({
  required this.category,
  required this.fsId,
  required this.isdir,
  required this.md5,
  required this.path,
  required this.serverCtime,
  required this.serverFilename,
  required this.serverMtime,
  required this.size,
  this.thumbs,
});