Address constructor

Address({
  1. String? apartment,
  2. String? area,
  3. String? pincode,
  4. String? landmark,
  5. String? city,
  6. String? state,
  7. String? country,
})

Implementation

Address(
    {this.apartment,
    this.area,
    this.pincode,
    this.landmark,
    this.city,
    this.state,
    this.country});