StreamTuple5<T1, T2, T3, T4, T5> constructor

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

Implementation

StreamTuple5(
  this.stream1,
  this.stream2,
  this.stream3,
  this.stream4,
  this.stream5,
);