PostalAddress constructor

const PostalAddress({
  1. String? streetName,
  2. String? buildingNumber,
  3. String? cityName,
  4. String? postalZone,
  5. String? state,
  6. String? country,
})

Implementation

const PostalAddress({
  this.streetName,
  this.buildingNumber,
  this.cityName,
  this.postalZone,
  this.state,
  this.country,
});