StreamTuple6<T1, T2, T3, T4, T5, T6> constructor

StreamTuple6<T1, T2, T3, T4, T5, T6>(
  1. Stream<T1> stream1,
  2. Stream<T2> stream2,
  3. Stream<T3> stream3,
  4. Stream<T4> stream4,
  5. Stream<T5> stream5,
  6. Stream<T6> stream6,
)

Implementation

StreamTuple6(
  this.stream1,
  this.stream2,
  this.stream3,
  this.stream4,
  this.stream5,
  this.stream6,
);