supportedGlobalNetworkCallingCodes property

List<int> supportedGlobalNetworkCallingCodes

Returns all global network calling codes the library has metadata for. This returns the country calling codes for every non-geographical entity the library supports.

Implementation

List<int> get supportedGlobalNetworkCallingCodes {
  return _metadataMapLoader.countryCodeToRegionCodeMap.entries
      .where((mapEntry) => _isNonGeographicalRegionCode(mapEntry.value))
      .map((e) => int.parse(e.key))
      .toList();
}