getCountriesByNameContains method

Future<Iterable<Country>?> getCountriesByNameContains(
  1. String name, {
  2. String? lang,
  3. dynamic firstCache = true,
  4. bool onErrorTryCache = false,
})

Implementation

Future<Iterable<Country>?> getCountriesByNameContains(String name,
        {String? lang, firstCache: true, bool onErrorTryCache: false}) =>
    getCountriesBy(nameContainsFunc(name, lang: lang),
        firstCache: firstCache, onErrorTryCache: onErrorTryCache);