dep<B> method

StepBuilder2<A, B> dep<B>(
  1. Step<B> stepB
)

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

StepBuilder2<A, B> dep<B>(Step<B> stepB) {
  return StepBuilder2._(_name, _a, stepB);
}