Address constructor

Address({
  1. String country = "",
  2. String state = "",
  3. String city = "",
  4. String neighborhood = "",
  5. String street = "",
  6. String placeNumber = "",
  7. String zipCode = "",
})

Implementation

Address({
  this.country = "",
  this.state = "",
  this.city = "",
  this.neighborhood = "",
  this.street = "",
  this.placeNumber = "",
  this.zipCode = ""
});