static Country byCallingCode(String code) { Country country = _countryData.countries .where((c) => c.callingCodes!.contains(code)) .first; return country; }