Order constructor

const Order({
  1. String? id,
  2. PaymentSource? paymentSource,
  3. String? intent,
  4. Payer? payer,
  5. List<PurchaseUnit>? purchaseUnits,
  6. String? status,
  7. String? createTime,
  8. String? updateTime,
  9. List<LinkDescription>? links,
})

Implementation

const Order(
    {this.id,
    this.paymentSource,
    this.intent,
    this.payer,
    this.purchaseUnits,
    this.status,
    this.createTime,
    this.updateTime,
    this.links});