countryDataFromJson function

List<CountryData> countryDataFromJson(
  1. String str
)

Implementation

List<CountryData> countryDataFromJson(String str) => List<CountryData>.from(
    json.decode(str).map((x) => CountryData.fromJson(x)));