fromJsonList static method

List<CryptoCurrencyModel> fromJsonList(
  1. List jsonList
)

Implementation

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