deps<S> method

StepBuilder9N<A, B, C, D, E, F, G, H, I, S> deps<S>(
  1. Iterable<Step<S>> deps
)

Add dependency on an arbitrary number of steps deps 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

StepBuilder9N<A, B, C, D, E, F, G, H, I, S> deps<S>(Iterable<Step<S>> deps) {
  ArgumentError.checkNotNull(deps, 'deps');
  final _deps = List<Step<S>>.from(deps);
  return StepBuilder9N._(_name, _a, _b, _c, _d, _e, _f, _g, _h, _i, _deps);
}