DownloadedFileCounts constructor

DownloadedFileCounts({
  1. required int activeCount,
  2. required int pausedCount,
  3. required int completedCount,
})

Implementation

DownloadedFileCounts({
  required this.activeCount,
  required this.pausedCount,
  required this.completedCount,
});