internationalPrefix property

  1. @TagNumber(11)
String internationalPrefix

The international_prefix of country A is the number that needs to be dialled from country A to another country (country B). This is followed by the country code for country B. Note that some countries may have more than one international prefix, and for those cases, a regular expression matching the international prefixes will be stored in this field.

Implementation

@$pb.TagNumber(11)
$core.String get internationalPrefix => $_getSZ(10);
  1. @TagNumber(11)
void internationalPrefix=(String v)

Implementation

@$pb.TagNumber(11)
set internationalPrefix($core.String v) {
  $_setString(10, v);
}