typed<T> static method

  1. @Deprecated('Use StreamController<T>(sync: true)..stream.cast<S>().pipe(sink)')
StreamConsumer<T> typed<T>(
  1. StreamConsumer consumer
)

Creates a wrapper that coerces the type of consumer.

Unlike StreamConsumer.new, this only requires its argument to be an instance of StreamConsumer, not StreamConsumer<T>. This means that calls to addStream may throw a TypeError if the argument type doesn't match the reified type of consumer.

Implementation

@Deprecated(
    'Use StreamController<T>(sync: true)..stream.cast<S>().pipe(sink)')
static StreamConsumer<T> typed<T>(StreamConsumer consumer) =>
    consumer is StreamConsumer<T>
        ? consumer
        : DelegatingStreamConsumer._(consumer);