OrderData constructor

OrderData({
  1. int? id,
  2. String? uuid,
  3. String? amount,
  4. String? currency,
  5. String? transactionId,
  6. String? customerId,
  7. String? merchantId,
  8. String? shippingFee,
  9. dynamic dateFulfilled,
  10. String? country,
  11. String? state,
  12. String? city,
  13. String? streetAddress,
  14. String? zip,
  15. String? meta,
  16. String? status,
  17. dynamic deletedAt,
  18. DateTime? createdAt,
  19. DateTime? updatedAt,
  20. List<ProductData>? products,
  21. CustomerData? customer,
})

Implementation

OrderData({
    this.id,
    this.uuid,
    this.amount,
    this.currency,
    this.transactionId,
    this.customerId,
    this.merchantId,
    this.shippingFee,
    this.dateFulfilled,
    this.country,
    this.state,
    this.city,
    this.streetAddress,
    this.zip,
    this.meta,
    this.status,
    this.deletedAt,
    this.createdAt,
    this.updatedAt,
    this.products,
    this.customer,
});