fromJsonList static method
Create a list of AppInfo objects from a list of JSON objects.
Implementation
static List<AppInfo> fromJsonList(List<dynamic> jsonList) {
return jsonList
.map((json) => AppInfo.fromJson(json as Map<String, dynamic>))
.toList();
}