UFileManagerEntryResponse constructor

UFileManagerEntryResponse({
  1. required String name,
  2. required String path,
  3. required bool isDirectory,
  4. required int size,
  5. required DateTime modifiedAt,
  6. String? extension,
  7. String? url,
})

Implementation

UFileManagerEntryResponse({
  required this.name,
  required this.path,
  required this.isDirectory,
  required this.size,
  required this.modifiedAt,
  this.extension,
  this.url,
});