StreamTuple7<T1, T2, T3, T4, T5, T6, T7> constructor

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

Implementation

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