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