countryCode property

  1. @TagNumber(10)
int countryCode

The country calling code that one would dial from overseas when trying to dial a phone number in this country. For example, this would be "64" for New Zealand.

Implementation

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

Implementation

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