fromDecodedJsonList static method

List<DownloadsNotificationModel> fromDecodedJsonList(
  1. List jsonList
)

Implementation

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