Country getCountryByCountryCode(String countryCode) { return getCountries.firstWhere((country) => country.code == countryCode, orElse: () { return _selectedCountry; }); }