CreateAddressData constructor

CreateAddressData({
  1. int? userId,
  2. String? zip,
  3. String? country,
  4. String? state,
  5. String? city,
  6. String? address,
  7. String? isDefault,
  8. String? status,
  9. DateTime? updatedAt,
  10. DateTime? createdAt,
  11. int? id,
})

Implementation

CreateAddressData({
    this.userId,
    this.zip,
    this.country,
    this.state,
    this.city,
    this.address,
    this.isDefault,
    this.status,
    this.updatedAt,
    this.createdAt,
    this.id,
});