dep<D> method

StepBuilder4<A, B, C, D> dep<D>(
  1. Step<D> stepD
)

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

StepBuilder4<A, B, C, D> dep<D>(Step<D> stepD) {
  return StepBuilder4._(_name, _a, _b, _c, stepD);
}