Delivery constructor

Delivery({
  1. String? firstName,
  2. String? lastName,
  3. String? phone,
  4. String? email,
  5. String? address,
  6. String? city,
  7. String? state,
  8. String? postCode,
  9. String? landmark,
  10. dynamic googlePlaceId,
  11. dynamic googleMapSearchPayload,
})

Implementation

Delivery({
    this.firstName,
    this.lastName,
    this.phone,
    this.email,
    this.address,
    this.city,
    this.state,
    this.postCode,
    this.landmark,
    this.googlePlaceId,
    this.googleMapSearchPayload,
});