Order constructor

Order({
  1. BuyerAddress? buyerAddress,
  2. String? createTime,
  3. Money? developerRevenueInBuyerCurrency,
  4. String? lastEventTime,
  5. List<LineItem>? lineItems,
  6. OrderDetails? orderDetails,
  7. OrderHistory? orderHistory,
  8. String? orderId,
  9. PointsDetails? pointsDetails,
  10. String? purchaseToken,
  11. String? state,
  12. Money? tax,
  13. 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,
});