Stream<T>.empty constructor Null safety
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>;