DownloadedFileCounts constructor

DownloadedFileCounts({
  1. String? extra,
  2. int? client_id,
  3. int32? active_count,
  4. int32? paused_count,
  5. int32? completed_count,
})

Implementation

DownloadedFileCounts({
  super.extra,
  super.client_id,
  this.active_count,
  this.paused_count,
  this.completed_count,
});