UpdateFileDownloads constructor

const UpdateFileDownloads({
  1. required int totalSize,
  2. required int totalCount,
  3. required int downloadedSize,
  4. dynamic extra,
  5. int? clientId,
})

The state of the file download list has changed

Implementation

const UpdateFileDownloads({
  required this.totalSize,
  required this.totalCount,
  required this.downloadedSize,
  this.extra,
  this.clientId,
});