region property

String? get region

The region of the world (usually a country) associated with the locale. Possible values are region codes as defined by ISO 3166-1.

Implementation

_i2.String? get region => _i5.getProperty(
      this,
      'region',
    );
set region (String? value)

Implementation

set region(_i2.String? value) {
  _i5.setProperty(
    this,
    'region',
    value ?? _i4.undefined,
  );
}