copyWithWrapped method
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));
}