isNewCommentOnMyPostOrComment property

bool isNewCommentOnMyPostOrComment

Implementation

bool get isNewCommentOnMyPostOrComment {
  if (notLoggedIn) return false;
  return user!.data[NEW_COMMENT_ON_MY_POST_OR_COMMENT] == null ||
      user!.data[NEW_COMMENT_ON_MY_POST_OR_COMMENT] == 'on';
}