Address constructor

Address({
  1. int? addressId,
  2. String? address,
  3. String? country,
  4. String? state,
  5. String? city,
  6. int? postcode,
  7. String? shopLatitude,
  8. String? shopLongitude,
  9. String? flatRate,
  10. String? forFirst,
  11. String? everyAdditional,
})

Implementation

Address(
    {this.addressId,
    this.address,
    this.country,
    this.state,
    this.city,
    this.postcode,
    this.shopLatitude,
    this.shopLongitude,
    this.flatRate,
    this.forFirst,
    this.everyAdditional});