byCallingCode static method

Country byCallingCode(
  1. String code
)

Implementation

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