Address constructor

Address({
  1. String? country,
  2. String? postalCode,
  3. String? city,
  4. String? region,
  5. String? streetAddress,
})

Implementation

Address({
  this.country, this.postalCode, this.city, this.region, this.streetAddress
});