StreamTuple4<T1, T2, T3, T4> constructor

StreamTuple4<T1, T2, T3, T4>(
  1. Stream<T1> stream1,
  2. Stream<T2> stream2,
  3. Stream<T3> stream3,
  4. Stream<T4> stream4,
)

Implementation

StreamTuple4(
  this.stream1,
  this.stream2,
  this.stream3,
  this.stream4,
);