UpdateFileDownload constructor

const UpdateFileDownload({
  1. required int fileId,
  2. required int completeDate,
  3. required bool isPaused,
  4. required DownloadedFileCounts counts,
  5. dynamic extra,
  6. int? clientId,
})

A file download was changed. This update is sent only after file download list is loaded for the first time

Implementation

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