dep<I> method

StepBuilder9<A, B, C, D, E, F, G, H, I> dep<I>(
  1. Step<I> stepI
)

Add dependency on stepI and return a new builder from which to continue (building the final step).

This methods returns a new builder to be used as an intermediate result in the expression defining a step. See Step.define for how to define steps.

Implementation

StepBuilder9<A, B, C, D, E, F, G, H, I> dep<I>(Step<I> stepI) {
  return StepBuilder9._(_name, _a, _b, _c, _d, _e, _f, _g, _h, stepI);
}