forceRefreshAuthState method

Future<bool> forceRefreshAuthState()

Implementation

Future<bool> forceRefreshAuthState() async {
  _lastTokenValidation = null;
  _lastKnownAuthState = null;
  // Don't reuse any existing completer for forced refresh
  _loginCheckCompleter = null;
  return await isLoggedInAsync();
}