typed<T> static method
- @Deprecated('Use stream.cast instead')
- Stream stream
Creates a wrapper which throws if stream
's events aren't instances of
T
.
This soundly converts a Stream to a Stream<T>
, regardless of its
original generic type, by asserting that its events are instances of T
whenever they're provided. If they're not, the stream throws a
TypeError.
Implementation
@Deprecated('Use stream.cast instead')
static Stream<T> typed<T>(Stream stream) => stream.cast();