toAddress method
Implementation
Address toAddress() => Address(
telecoms: this.telecoms.map((it) => it.toTelecom()).toList(),
addressType: this.addressType?.toAddressType(),
description: this.descr,
street: this.street,
houseNumber: this.houseNumber,
postboxNumber: this.postboxNumber,
postalCode: this.postalCode,
city: this.city,
state: this.state,
country: this.country,
note: this.note);