UpdateFileDownload constructor

UpdateFileDownload({
  1. required int fileId,
  2. required int completeDate,
  3. required bool isPaused,
  4. DownloadedFileCounts? counts,
})

Implementation

UpdateFileDownload({
  required this.fileId,
  required this.completeDate,
  required this.isPaused,
  this.counts,
});