logout method
Logs out and clears session state. Parsers are disposed.
Implementation
Future<void> logout() async {
_ensureNotDisposed();
await _clearSession(skipDeauthenticate: false);
_activeAccount = null;
_authenticated = false;
}
Logs out and clears session state. Parsers are disposed.
Future<void> logout() async {
_ensureNotDisposed();
await _clearSession(skipDeauthenticate: false);
_activeAccount = null;
_authenticated = false;
}