getCountriesBySubregion method

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

Implementation

Future<Iterable<Country>?> getCountriesBySubregion(String subregion,
        {firstCache: true, bool onErrorTryCache: false}) =>
    getCountriesBy(subregionFunc(subregion),
        firstCache: firstCache, onErrorTryCache: onErrorTryCache);