getStatesOfCountry function
Get the list of States of a Country
Implementation
Future<List<StateModel>> getStatesOfCountry({required String countryCode}) {
return StateUtils.getStatesOfCountry(countryCode);
}
Get the list of States of a Country
Future<List<StateModel>> getStatesOfCountry({required String countryCode}) {
return StateUtils.getStatesOfCountry(countryCode);
}