UpdateFileAddedToDownloads constructor

const UpdateFileAddedToDownloads({
  1. required FileDownload fileDownload,
  2. required DownloadedFileCounts counts,
  3. dynamic extra,
  4. int? clientId,
})

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

Implementation

const UpdateFileAddedToDownloads({
  required this.fileDownload,
  required this.counts,
  this.extra,
  this.clientId,
});