countryFromJson function

Country countryFromJson(
  1. String code
)

Implementation

Country countryFromJson(String code) {
  return CountrySet().lookup(code);
}