eagerSourceNode<T> static method

SourceNode<T> eagerSourceNode<T>(
  1. Stream<T> stream, {
  2. String? name,
  3. bool pauseable = false,
})

Implementation

static SourceNode<T> eagerSourceNode<T>(Stream<T> stream,
        {String? name, bool pauseable = false}) =>
    EagerSourceNode<T>(stream, pauseable: pauseable, name: name);