ProductOrderItem constructor

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

Implementation

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