countryCode property

  1. @TagNumber(1)
int countryCode

The country calling code for this number, as defined by the International Telecommunication Union (ITU). For example, this would be 1 for NANPA countries, and 33 for France.

Implementation

@$pb.TagNumber(1)
$core.int get countryCode => $_getIZ(0);
  1. @TagNumber(1)
void countryCode=(int v)

Implementation

@$pb.TagNumber(1)
set countryCode($core.int v) {
  $_setSignedInt32(0, v);
}