getCountryByCode3 method

Future<Country?> getCountryByCode3({
  1. Alpha3Code? code3,
  2. dynamic firstCache = true,
  3. bool onErrorTryCache = false,
})

Implementation

Future<Country?> getCountryByCode3(
        {Alpha3Code? code3,
        firstCache: true,
        bool onErrorTryCache: false}) async =>
    getCountryBy(code3Func(code3),
        firstCache: firstCache, onErrorTryCache: onErrorTryCache);