State property

String? get State
Gets or sets the state.

Implementation

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

Implementation

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