copyWithWrapped method

WebApiModulesWarehouseCheckInCheckInRemoveOrderRequest copyWithWrapped({
  1. Wrapped<String?>? contractId,
  2. Wrapped<String?>? orderId,
})

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),
  );
}