PostalAddress constructor

PostalAddress({
  1. String? label,
  2. String? street,
  3. String? city,
  4. String? postcode,
  5. String? region,
  6. String? country,
})

Implementation

PostalAddress(
    {this.label,
    this.street,
    this.city,
    this.postcode,
    this.region,
    this.country});