OrderLineItem constructor
OrderLineItem({
- List<
OrderLineItemAdjustment> ? adjustments, - List<
OrderMerchantProvidedAnnotation> ? annotations, - List<
OrderCancellation> ? cancellations, - String? id,
- Price? price,
- OrderLineItemProduct? product,
- int? quantityCanceled,
- int? quantityDelivered,
- int? quantityOrdered,
- int? quantityPending,
- int? quantityReadyForPickup,
- int? quantityReturned,
- int? quantityShipped,
- int? quantityUndeliverable,
- OrderLineItemReturnInfo? returnInfo,
- List<
OrderReturn> ? returns, - OrderLineItemShippingDetails? shippingDetails,
- Price? tax,
Implementation
OrderLineItem({
this.adjustments,
this.annotations,
this.cancellations,
this.id,
this.price,
this.product,
this.quantityCanceled,
this.quantityDelivered,
this.quantityOrdered,
this.quantityPending,
this.quantityReadyForPickup,
this.quantityReturned,
this.quantityShipped,
this.quantityUndeliverable,
this.returnInfo,
this.returns,
this.shippingDetails,
this.tax,
});