Combine2Node<R, S, T> constructor

Combine2Node<R, S, T>(
  1. StreamNode<R> stream1,
  2. StreamNode<S> stream2,
  3. Stream<T> combinator(
    1. Stream<R>,
    2. Stream<S>
    ), {
  4. String? name,
})

Implementation

Combine2Node(this.stream1, this.stream2, this.combinator, {String? name})
    : super(name: name);