Address constructor

const Address({
  1. String highway = "",
  2. String road = "",
  3. String city = "",
  4. String stateDistrict = "",
  5. String state = "",
  6. String postcode = "",
  7. String country = "",
  8. String countryCode = "",
})

Implementation

const Address({
  this.highway = "",
  this.road = "",
  this.city = "",
  this.stateDistrict = "",
  this.state = "",
  this.postcode = "",
  this.country = "",
  this.countryCode = "",
});