getCountriesByRegion method

Future<Iterable<Country>?> getCountriesByRegion(
  1. String region, {
  2. dynamic firstCache = true,
  3. bool onErrorTryCache = false,
})

Implementation

Future<Iterable<Country>?> getCountriesByRegion(String region,
        {firstCache: true, bool onErrorTryCache: false}) =>
    getCountriesBy(regionFunc(region),
        firstCache: firstCache, onErrorTryCache: onErrorTryCache);