Address constructor

Address({
  1. AddressAddressTypeEnum? addressType,
  2. String? description,
  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<Telecom> telecoms = const [],
})

Returns a new Address instance.

Implementation

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