getCityByCode function

Future<City?> getCityByCode({
  1. required String cityCode,
})

Get state from its isoCode

Implementation

Future<City?> getCityByCode({required String cityCode}) {
  return CityUtils.getCityByCode(cityCode);
}