ContactAddress constructor

const ContactAddress({
  1. String street = '',
  2. String city = '',
  3. String state = '',
  4. String postalCode = '',
  5. String country = '',
  6. String isoCountry = '',
  7. String subAdministrativeArea = '',
  8. String subLocality = '',
  9. AddressLabel label = AddressLabel.home,
  10. String customLabel = '',
})

Creates a ContactAddress with the given parameters

Implementation

const ContactAddress({
  this.street = '',
  this.city = '',
  this.state = '',
  this.postalCode = '',
  this.country = '',
  this.isoCountry = '',
  this.subAdministrativeArea = '',
  this.subLocality = '',
  this.label = AddressLabel.home,
  this.customLabel = '',
});