findCountriesBySubstring method

Future<List<CityResult>> findCountriesBySubstring(
  1. String substring
)

Search for countries by substring

Implementation

Future<List<CityResult>> findCountriesBySubstring(String substring) {
  throw UnimplementedError('findCountriesBySubstring() has not been implemented.');
}