Address constructor

Address({
  1. String? city,
  2. String? country,
  3. String? countryCode,
  4. String? extendedAddress,
  5. String? formattedType,
  6. String? formattedValue,
  7. FieldMetadata? metadata,
  8. String? poBox,
  9. String? postalCode,
  10. String? region,
  11. String? streetAddress,
  12. String? type,
})

Implementation

Address({
  this.city,
  this.country,
  this.countryCode,
  this.extendedAddress,
  this.formattedType,
  this.formattedValue,
  this.metadata,
  this.poBox,
  this.postalCode,
  this.region,
  this.streetAddress,
  this.type,
});