stream property
Stream
get
stream
Stream of received messages
Implementation
Stream<dynamic> get stream {
_controller ??= StreamController<dynamic>.broadcast();
return _controller!.stream;
}
Stream of received messages
Stream<dynamic> get stream {
_controller ??= StreamController<dynamic>.broadcast();
return _controller!.stream;
}