country property
@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);
Implementation
@$pb.TagNumber(35)
set country($core.String value) => $_setString(16, value);