fromDecodedJsonList static method
Implementation
static List<DownloadsNotificationModel> fromDecodedJsonList(
List<dynamic> jsonList) {
return jsonList
.map((e) => DownloadsNotificationModel.fromJson(
Map<String, dynamic>.from(e),
))
.toList();
}