Address constructor

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

Implementation

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