listFromJson static method

List<Country> listFromJson(
  1. List list
)

Implementation

static List<Country> listFromJson(List<dynamic> list) =>
    list.map((x) => Country.fromJson(x)).toList(growable: false);