hideUserPresence method

bool hideUserPresence(
  1. User? user
)

Implementation

bool hideUserPresence(User? user) {
  return user!=null && (disableUsersPresence == true || !userIsNotBlocked(user));
}