City property

String? get City
Gets or sets the city.

Implementation

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

Implementation

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