MailingAddress constructor

MailingAddress({
  1. String label = '',
  2. String city = '',
  3. String street = '',
  4. String countryRegion = '',
  5. String type = '',
  6. String postalCode = '',
  7. String stateProvince = '',
})

Implementation

MailingAddress({
  this.label='',
  this.city='',
  this.street='',
  this.countryRegion='',
  this.type='',
  this.postalCode='',
  this.stateProvince='',
});