regionCode property

  1. @TagNumber.new(8)
String get regionCode

The CLDR country/region code associated with the above IP address. If the IP address is private, the region_code should reflect the physical location where this peer is running.

Implementation

@$pb.TagNumber(8)
$core.String get regionCode => $_getSZ(4);
  1. @TagNumber.new(8)
set regionCode (String v)

Implementation

@$pb.TagNumber(8)
set regionCode($core.String v) {
  $_setString(4, v);
}