DownloadedFileCounts.fromJson constructor
Parse from a json
Implementation
factory DownloadedFileCounts.fromJson(Map<String, dynamic> json) =>
DownloadedFileCounts(
activeCount: json['active_count'],
pausedCount: json['paused_count'],
completedCount: json['completed_count'],
);