Get a country by its ISO code
Returns null if the country code is not found
static Country? getCountryByCode(String code) { return _countriesByCode[code.toUpperCase()]; }