dep<H> method

StepBuilder8<A, B, C, D, E, F, G, H> dep<H>(
  1. Step<H> stepH
)

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

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