AddressModelMain constructor

AddressModelMain({
  1. int? id,
  2. String? firstName,
  3. String? lastName,
  4. String? phone,
  5. String? email,
  6. String? address,
  7. String? city,
  8. String? postCode,
  9. String? landmark,
  10. String? countryCode,
  11. String? regionCode,
  12. String? localAreaCode,
  13. String? googlePlaceId,
  14. String? googleMapSearchPayload,
  15. int? customerId,
})

Implementation

AddressModelMain({
  this.id,
  this.firstName,
  this.lastName,
  this.phone,
  this.email,
  this.address,
  this.city,
  this.postCode,
  this.landmark,
  this.countryCode,
  this.regionCode,
  this.localAreaCode,
  this.googlePlaceId,
  this.googleMapSearchPayload,
  this.customerId,
});