AddressModel constructor

AddressModel({
  1. String street = '',
  2. String number = '',
  3. String city = '',
  4. String state = '',
  5. String country = '',
  6. String zipCode = '',
  7. String district = '',
})

Implementation

AddressModel({
  this.street = '',
  this.number = '',
  this.city = '',
  this.state = '',
  this.country = '',
  this.zipCode = '',
  this.district = '',
});