copyWith method

WebApiModulesWarehouseCheckInCheckInOrder copyWith({
  1. String? orderId,
  2. String? orderNo,
  3. String? orderDescription,
  4. int? priority,
})

Implementation

WebApiModulesWarehouseCheckInCheckInOrder copyWith(
    {String? orderId,
    String? orderNo,
    String? orderDescription,
    int? priority}) {
  return WebApiModulesWarehouseCheckInCheckInOrder(
      orderId: orderId ?? this.orderId,
      orderNo: orderNo ?? this.orderNo,
      orderDescription: orderDescription ?? this.orderDescription,
      priority: priority ?? this.priority);
}