Address constructor

Address({
  1. String? number,
  2. String? street,
  3. String? apt,
  4. String? city,
  5. String? state,
  6. String? country,
  7. String? zipCode,
})

Implementation

Address({
  this.number,
  this.street,
  this.apt,
  this.city,
  this.state,
  this.country,
  this.zipCode,
});