country property

  1. @TagNumber.new(35)
String get country

@optional

@description The country code corresponding to the user's operational location.

@example "US"

@regex ^A-Z{2}$

@format Strict ISO 3166-1 alpha-2 standard country codes are highly recommended.

Implementation

@$pb.TagNumber(35)
$core.String get country => $_getSZ(16);
  1. @TagNumber.new(35)
set country (String value)

Implementation

@$pb.TagNumber(35)
set country($core.String value) => $_setString(16, value);