FileItem constructor

FileItem({
  1. required String path,
  2. required String title,
  3. required int size,
  4. required String type,
})

Implementation

FileItem({
  required this.path,
  required this.title,
  required this.size,
  required this.type,
});