AddressInformation property
EmailAddress?
get
AddressInformation
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);
}
}