postJoin method

StreamController<WsEvent> postJoin({
  1. required int postId,
})

Receives new comments on a post

Implementation

StreamController<WsEvent> postJoin({
  required int postId,
}) =>
    _persistantStream('PostJoin', <String, dynamic>{
      'post_id': postId,
    });