Street property

String? get Street
Gets or sets the street.

Implementation

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

Implementation

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