OrderData constructor
OrderData({
- int? id,
- String? uuid,
- String? amount,
- String? currency,
- String? transactionId,
- String? customerId,
- String? merchantId,
- String? shippingFee,
- dynamic dateFulfilled,
- String? country,
- String? state,
- String? city,
- String? streetAddress,
- String? zip,
- String? meta,
- String? status,
- dynamic deletedAt,
- DateTime? createdAt,
- DateTime? updatedAt,
- List<
ProductData> ? products, - 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,
});