combine2Node<R, S, T> static method

Combine2Node<R, S, T> 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

static Combine2Node<R, S, T> combine2Node<R, S, T>(
        StreamNode<R> stream1,
        StreamNode<S> stream2,
        Stream<T> Function(Stream<R>, Stream<S>) combinator,
        {String? name}) =>
    Combine2Node<R, S, T>(stream1, stream2, combinator, name: name);