Address constructor

const Address({
  1. String? formatted,
  2. String? streetAddress,
  3. String? locality,
  4. String? region,
  5. String? postalCode,
  6. String? country,
})

Address default constructor

Implementation

const Address({
  this.formatted,
  this.streetAddress,
  this.locality,
  this.region,
  this.postalCode,
  this.country,
});