isLoggedIn method

bool isLoggedIn()

Implementation

bool isLoggedIn() {
  if (loading) {
    return false;
  }
  return info != null;
}