getCountryByCapital method
Implementation
Future<Country?> getCountryByCapital(String capital,
{firstCache: true, bool onErrorTryCache: false}) =>
getCountryBy(capitalFunc(capital),
firstCache: firstCache, onErrorTryCache: onErrorTryCache);