copyWithWrapped method
Implementation
WebApiModulesWarehouseCheckInCheckInRemoveOrderRequest copyWithWrapped({
Wrapped<String?>? contractId,
Wrapped<String?>? orderId,
}) {
return WebApiModulesWarehouseCheckInCheckInRemoveOrderRequest(
contractId: (contractId != null ? contractId.value : this.contractId),
orderId: (orderId != null ? orderId.value : this.orderId),
);
}