modJoin method

StreamController<WsEvent> modJoin({
  1. required int communityId,
})

Receives community moderator updates like reports

Implementation

StreamController<WsEvent> modJoin({
  required int communityId,
}) =>
    _persistantStream('ModJoin', <String, dynamic>{
      'community_id': communityId,
    });