Order constructor
Order({
- BuyerAddress? buyerAddress,
- String? createTime,
- Money? developerRevenueInBuyerCurrency,
- String? lastEventTime,
- List<
LineItem> ? lineItems, - OrderDetails? orderDetails,
- OrderHistory? orderHistory,
- String? orderId,
- PointsDetails? pointsDetails,
- String? purchaseToken,
- String? state,
- Money? tax,
- Money? total,
Implementation
Order({
this.buyerAddress,
this.createTime,
this.developerRevenueInBuyerCurrency,
this.lastEventTime,
this.lineItems,
this.orderDetails,
this.orderHistory,
this.orderId,
this.pointsDetails,
this.purchaseToken,
this.state,
this.tax,
this.total,
});