fromJsonList static method
- List jsonList
Implementation
static List<CryptoCurrencyModel> fromJsonList(List<dynamic> jsonList) {
return jsonList.map((json) => CryptoCurrencyModel.fromJson(json)).toList();
}
static List<CryptoCurrencyModel> fromJsonList(List<dynamic> jsonList) {
return jsonList.map((json) => CryptoCurrencyModel.fromJson(json)).toList();
}