findCountryByCode method

Future<CityResult?> findCountryByCode(
  1. String code
)

Find a country by its ISO2 code

Implementation

Future<CityResult?> findCountryByCode(String code) {
  throw UnimplementedError('findCountryByCode() has not been implemented.');
}