AddressDto constructor

AddressDto({
  1. AddressDtoAddressTypeEnum? addressType,
  2. String? descr,
  3. String? street,
  4. String? houseNumber,
  5. String? postboxNumber,
  6. String? postalCode,
  7. String? city,
  8. String? state,
  9. String? country,
  10. String? note,
  11. List<TelecomDto> telecoms = const [],
  12. String? encryptedSelf,
})

Returns a new AddressDto instance.

Implementation

AddressDto({
  this.addressType,
  this.descr,
  this.street,
  this.houseNumber,
  this.postboxNumber,
  this.postalCode,
  this.city,
  this.state,
  this.country,
  this.note,
  this.telecoms = const [],
  this.encryptedSelf,
});