clearAuthState method

void clearAuthState ()

Implementation

void clearAuthState() {
  if (authState == AuthState.ERROR) {
    authState = AuthState.NOT_SIGNED_IN;
    notifyListeners();
  } else {
    print('auth state is not error, nothing to recover');
  }
}