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