PostalCode property

String? PostalCode
Gets or sets the postal code.

Implementation

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

Implementation

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