ShopifyOrder constructor

ShopifyOrder({
  1. String? customer,
  2. BillingAddress? billingAddress,
  3. String? currency,
  4. List<DiscountCodes>? discountCodes,
  5. String? email,
  6. String? financialStatus,
  7. List<LineItems>? lineItems,
  8. String? presentmentCurrency,
  9. ShippingAddress? shippingAddress,
  10. List<ShippingLines>? shippingLines,
  11. bool? taxesIncluded,
  12. bool? test,
  13. String? totalDiscounts,
  14. String? totalLineItemsPrice,
  15. String? totalPrice,
  16. String? totalTax,
  17. List<TaxLines>? taxLines,
  18. bool? sendReceipt,
  19. bool? sendFulfillmentReceipt,
  20. List<Transaction>? transactions,
})

Implementation

ShopifyOrder(
    {this.customer,
    this.billingAddress,
    this.currency,
    this.discountCodes,
    this.email,
    this.financialStatus,
    this.lineItems,
    this.presentmentCurrency,
    this.shippingAddress,
    this.shippingLines,
    this.taxesIncluded,
    this.test,
    this.totalDiscounts,
    this.totalLineItemsPrice,
    this.totalPrice,
    this.totalTax,
    this.taxLines,
    this.sendReceipt,
    this.sendFulfillmentReceipt,
    this.transactions});