userStream method

Stream userStream()
inherited

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

authenticated

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

Implementation

Stream<dynamic> userStream() {
  final channel = _channel("user");

  return channel.stream.map(_handleEvent);
}