ProductOrderItem constructor

ProductOrderItem({
  1. String? id,
  2. String? productOrderItemType,
  3. int? quantity,
  4. String? action,
  5. List<ItemPrice>? itemPrice,
  6. ProductRefOrValue? productRefOrValue,
  7. String? state,
})

Implementation

ProductOrderItem({
  this.id,
  this.productOrderItemType,
  this.quantity,
  this.action,
  this.itemPrice,
  this.productRefOrValue,
  this.state,
});