toAddressDto method

AddressDto toAddressDto()

Implementation

AddressDto toAddressDto() => AddressDto(
    telecoms: this.telecoms.map((it) => it.toTelecomDto()).toList(),
    addressType: this.addressType?.toAddressTypeDto(),
    descr: this.description,
    street: this.street,
    houseNumber: this.houseNumber,
    postboxNumber: this.postboxNumber,
    postalCode: this.postalCode,
    city: this.city,
    state: this.state,
    country: this.country,
    note: this.note);