FormattedAddress property

String? FormattedAddress
Gets or sets the street address.

Implementation

String? get FormattedAddress => this._formattedAddress;
void FormattedAddress=(String? value)

Implementation

set FormattedAddress(String? value) {
  if (this.CanSetFieldValue(this._formattedAddress, value)) {
    this._formattedAddress = value;
    this.Changed();
  }
}