OrderResponse constructor

OrderResponse({
  1. String? processedAt,
  2. BillingAddress? billingAddress,
  3. ShippingAddress? shippingAddress,
  4. String? displayFulfillmentStatus,
  5. List<LineItems>? lineItems,
  6. String? name,
  7. bool? fullyPaid,
  8. OriginalUnitPriceSet? totalPriceSet,
  9. int? subtotalLineItemsQuantity,
  10. OriginalUnitPriceSet? subtotalPriceSet,
})

Implementation

OrderResponse(
    {this.processedAt,
    this.billingAddress,
    this.shippingAddress,
    this.displayFulfillmentStatus,
    this.lineItems,
    this.name,
    this.fullyPaid,
    this.totalPriceSet,
    this.subtotalLineItemsQuantity,
    this.subtotalPriceSet});