DisplayAddress constructor

DisplayAddress({
  1. String? city,
  2. String? postalCode,
  3. String? region,
  4. String? streetName,
  5. String? streetNumber,
})

Implementation

DisplayAddress({
  this.city,
  this.postalCode,
  this.region,
  this.streetName,
  this.streetNumber,
});