FileInfo constructor

FileInfo({
  1. required String path,
  2. required File file,
  3. required String name,
  4. required String extension,
  5. required FileInfoType type,
  6. FileInfo? thumbnail,
})

Implementation

FileInfo({
  required this.path,
  required this.file,
  required this.name,
  required this.extension,
  required this.type,
  this.thumbnail,
});