Address constructor

Address({
  1. String street = '',
  2. String city = '',
  3. String state = '',
  4. String postalCode = '',
  5. String country = '',
})

Implementation

Address({
  this.street = '',
  this.city = '',
  this.state = '',
  this.postalCode = '',
  this.country = '',
});