OrphanedFileInfo constructor

const OrphanedFileInfo({
  1. required String filename,
  2. required String path,
  3. required int sizeBytes,
  4. DateTime? lastModified,
  5. bool isDownloadFragment = false,
})

Implementation

const OrphanedFileInfo({
  required this.filename,
  required this.path,
  required this.sizeBytes,
  this.lastModified,
  this.isDownloadFragment = false,
});