fromJsonList static method
Implementation
static List<AtNotification> fromJsonList(
List<Map<String, dynamic>> jsonList) {
List<AtNotification> notificationList = [];
for (var json in jsonList) {
notificationList.add(AtNotification.fromJson(json));
}
return notificationList;
}