dep<F> method

StepBuilder6<A, B, C, D, E, F> dep<F>(
  1. Step<F> stepF
)

Add dependency on stepF 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

StepBuilder6<A, B, C, D, E, F> dep<F>(Step<F> stepF) {
  return StepBuilder6._(_name, _a, _b, _c, _d, _e, stepF);
}