DownloadedFileCounts constructor

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

Contains number of being downloaded and recently downloaded files found

Implementation

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