PostalAddress constructor

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

Creates a PostalAddress with individual components.

Implementation

PostalAddress({
  this.street,
  this.city,
  this.state,
  this.postalCode,
  this.country,
  this.label,
});