OrderWC constructor

OrderWC({
  1. String? paymentMethod,
  2. String? paymentMethodTitle,
  3. bool? setPaid,
  4. String? status,
  5. String? currency,
  6. int? customerId,
  7. String? customerNote,
  8. int? parentId,
  9. List<MetaData>? metaData,
  10. List<FeeLines>? feeLines,
  11. List<CouponLines>? couponLines,
  12. Billing? billing,
  13. Shipping? shipping,
  14. List<LineItems>? lineItems,
  15. List<ShippingLines>? shippingLines,
  16. String? transactionId,
})

Implementation

OrderWC(
    {this.paymentMethod,
    this.paymentMethodTitle,
    this.setPaid,
    this.status,
    this.currency,
    this.customerId,
    this.customerNote,
    this.parentId,
    this.metaData,
    this.feeLines,
    this.couponLines,
    this.billing,
    this.shipping,
    this.lineItems,
    this.shippingLines,
    this.transactionId});