ConversionNode<S, T> constructor

ConversionNode<S, T>(
  1. StreamNode<S> input,
  2. T converter(
    1. Stream<S>
    ), {
  3. String? name,
})

Implementation

ConversionNode(StreamNode<S> input, this.converter, {this.name})
    : super(input, name: name);