isLoggedIn property

Future<bool> isLoggedIn

Implementation

static Future<bool> get isLoggedIn async {
  if ((await currentAccessToken).isValid())
    return true;
  else
    return false;
}