copyWithWrapped method

Implementation

WebApiModulesInventoryInventoryCopyPendingModificationsToOtherWarehousesRequest
copyWithWrapped({
  Wrapped<String?>? fromWarehouseId,
  Wrapped<String?>? toWarehouseIds,
}) {
  return WebApiModulesInventoryInventoryCopyPendingModificationsToOtherWarehousesRequest(
    fromWarehouseId: (fromWarehouseId != null
        ? fromWarehouseId.value
        : this.fromWarehouseId),
    toWarehouseIds: (toWarehouseIds != null
        ? toWarehouseIds.value
        : this.toWarehouseIds),
  );
}