Stream<T>.empty constructor

const Stream<T>.empty()

Creates an empty broadcast stream.

This is a stream which does nothing except sending a done event when it's listened to.

Implementation

const factory Stream.empty() = _EmptyStream<T>;