AddressInformation property

EmailAddress? get AddressInformation
Gets the address information of the member.

Implementation

EmailAddress? get AddressInformation => this.addressInformation;
set 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);
  }
}