UpdateFileRemovedFromDownloads constructor

const UpdateFileRemovedFromDownloads({
  1. required int fileId,
  2. required DownloadedFileCounts counts,
  3. dynamic extra,
  4. int? clientId,
})

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

Implementation

const UpdateFileRemovedFromDownloads({
  required this.fileId,
  required this.counts,
  this.extra,
  this.clientId,
});