Address constructor

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

Implementation

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