copyWithWrapped method

WebApiModulesWarehouseCheckInCheckInOrder copyWithWrapped({
  1. Wrapped<String?>? orderId,
  2. Wrapped<String?>? orderNo,
  3. Wrapped<String?>? orderDescription,
  4. Wrapped<int?>? priority,
})

Implementation

WebApiModulesWarehouseCheckInCheckInOrder copyWithWrapped({
  Wrapped<String?>? orderId,
  Wrapped<String?>? orderNo,
  Wrapped<String?>? orderDescription,
  Wrapped<int?>? priority,
}) {
  return WebApiModulesWarehouseCheckInCheckInOrder(
    orderId: (orderId != null ? orderId.value : this.orderId),
    orderNo: (orderNo != null ? orderNo.value : this.orderNo),
    orderDescription: (orderDescription != null
        ? orderDescription.value
        : this.orderDescription),
    priority: (priority != null ? priority.value : this.priority),
  );
}