ShippingAddressData constructor

ShippingAddressData({
  1. dynamic merchantId,
  2. String? zip,
  3. String? addressName,
  4. String? streetAddress,
  5. String? country,
  6. String? state,
  7. String? city,
  8. String? customerId,
  9. String? isDefaultAddress,
  10. String? status,
  11. DateTime? updatedAt,
  12. DateTime? createdAt,
  13. int? id,
})

Implementation

ShippingAddressData({
    this.merchantId,
    this.zip,
    this.addressName,
    this.streetAddress,
    this.country,
    this.state,
    this.city,
    this.customerId,
    this.isDefaultAddress,
    this.status,
    this.updatedAt,
    this.createdAt,
    this.id,
});