copyWith method
Implementation
DownloadedFileCounts copyWith({
int? activeCount,
int? pausedCount,
int? completedCount,
}) =>
DownloadedFileCounts(
activeCount: activeCount ?? this.activeCount,
pausedCount: pausedCount ?? this.pausedCount,
completedCount: completedCount ?? this.completedCount,
);