dep<E> method

StepBuilder5<A, B, C, D, E> dep<E>(
  1. Step<E> stepE
)

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

StepBuilder5<A, B, C, D, E> dep<E>(Step<E> stepE) {
  return StepBuilder5._(_name, _a, _b, _c, _d, stepE);
}