getCountriesByRegionContains method

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

Implementation

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