AddressDto constructor

AddressDto(
  1. {String? country,
  2. String? zip,
  3. String? city,
  4. String? street,
  5. String? number}
)

Implementation

AddressDto({
  this.country,
  this.zip,
  this.city,
  this.street,
  this.number,
});