Address constructor

Address({
  1. String? addressId,
  2. String? name,
  3. String? contactNo,
  4. String? address,
  5. Country? country,
  6. State? state,
  7. City? city,
})

Implementation

Address({
    this.addressId,
    this.name,
    this.contactNo,
    this.address,
    this.country,
    this.state,
    this.city,});