directStream method

Stream directStream()
inherited

https://docs.joinmastodon.org/api/streaming/#websocket

public

returns Status (update), String (delete), Notification (notification), or null (filters_changed)

Implementation

Stream<dynamic> directStream() {
  final channel = _channel("direct");

  return channel.stream.map(_handleEvent);
}