FoundFileDownloads constructor

const FoundFileDownloads({
  1. required DownloadedFileCounts totalCounts,
  2. required List<FileDownload> files,
  3. required String nextOffset,
  4. dynamic extra,
  5. int? clientId,
})

Contains a list of downloaded files, found by a search

Implementation

const FoundFileDownloads({
  required this.totalCounts,
  required this.files,
  required this.nextOffset,
  this.extra,
  this.clientId,
});