Address constructor

Address(
  1. String address, {
  2. AddressLabel label = AddressLabel.home,
  3. String customLabel = '',
  4. String street = '',
  5. String pobox = '',
  6. String neighborhood = '',
  7. String city = '',
  8. String state = '',
  9. String postalCode = '',
  10. String country = '',
  11. String isoCountry = '',
  12. String subAdminArea = '',
  13. String subLocality = '',
})

Implementation

Address(
  this.address, {
  this.label = AddressLabel.home,
  this.customLabel = '',
  this.street = '',
  this.pobox = '',
  this.neighborhood = '',
  this.city = '',
  this.state = '',
  this.postalCode = '',
  this.country = '',
  this.isoCountry = '',
  this.subAdminArea = '',
  this.subLocality = '',
});