nationalPrefix property

  1. @TagNumber(12)
String get nationalPrefix

The national prefix of country A is the number that needs to be dialled before the national significant number when dialling internally. This would not be dialled when dialling internationally. For example, in New Zealand, the number that would be locally dialled as 09 345 3456 would be dialled from overseas as +64 9 345 3456. In this case, 0 is the national prefix.

Implementation

@$pb.TagNumber(12)
$core.String get nationalPrefix => $_getSZ(11);
  1. @TagNumber(12)
set nationalPrefix (String v)

Implementation

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