AddressInformation property

EmailAddress? AddressInformation
Gets the address information of the member.

Implementation

EmailAddress? get AddressInformation => this.addressInformation;
void AddressInformation=(EmailAddress? value)

Implementation

set AddressInformation(EmailAddress? value) {
  if (this.addressInformation != null) {
    this
        .addressInformation!
        .removeChangeEvent(this.AddressInformationChanged);
  }

  this.addressInformation = value;

  if (this.addressInformation != null) {
    this.addressInformation!.addOnChangeEvent(this.AddressInformationChanged);
  }
}