communityJoin method

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

Receives community actions. When communityId is 0, front page is listened

Implementation

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