userJoin method

StreamController<WsEvent> userJoin({
  1. required String auth,
})

Receives replies, private messages, etc.

Implementation

StreamController<WsEvent> userJoin({
  required String auth,
}) =>
    _persistantStream('UserJoin', <String, dynamic>{
      'auth': auth,
    });