dep<G> method

StepBuilder7<A, B, C, D, E, F, G> dep<G>(
  1. Step<G> stepG
)

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

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