dep<A> method
Add dependency on stepA
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
StepBuilder1<A> dep<A>(Step<A> stepA) {
return StepBuilder1._(_name, stepA);
}