onCommentUpserted method

void onCommentUpserted(
  1. CommentData comment
)

Handles updates to the feed state when a comment is added or updated.

Implementation

void onCommentUpserted(CommentData comment) {
  // Add or update the comment in the activity
  state = state.updateActivitiesWhere(
    (it) => it.id == comment.objectId,
    update: (it) => it.upsertComment(comment),
  );
}