PostalAddress constructor

PostalAddress({
  1. String? street,
  2. String? city,
  3. String? state,
  4. String? postalCode,
  5. String? country,
  6. String? isoCountryCode,
  7. String? subAdministrativeArea,
  8. String? subLocality,
})

The contact’s full postal address.

Implementation

PostalAddress({
  this.street,
  this.city,
  this.state,
  this.postalCode,
  this.country,
  this.isoCountryCode,
  this.subAdministrativeArea,
  this.subLocality,
});