CountryOrRegion property

String? CountryOrRegion
Gets or sets the country or region.

Implementation

String? get CountryOrRegion =>
    this._propertyBag[_PhysicalAddressSchema.CountryOrRegion] as String?;
void CountryOrRegion=(String? value)

Implementation

set CountryOrRegion(String? value) =>
    this._propertyBag[_PhysicalAddressSchema.CountryOrRegion] = value;