StockDeliveryOrderModel constructor

StockDeliveryOrderModel({
  1. String? id,
  2. String? category,
  3. String? externalId,
  4. String? priority,
  5. String? orderDate,
  6. String? state,
  7. List<OrderTotalPrice>? orderTotalPrice,
  8. List<ProductOrderItem>? productOrderItem,
})

Implementation

StockDeliveryOrderModel(
    {this.id,
    this.category,
    this.externalId,
    this.priority,
    this.orderDate,
    this.state,
    this.orderTotalPrice,
    this.productOrderItem});