logout method
Logs out the current user
Clears all stored authentication data and tokens.
Implementation
Future<void> logout() async {
_currentTokens = null;
_currentUser = null;
// Storage clearing is handled by the simplified client
}
Logs out the current user
Clears all stored authentication data and tokens.
Future<void> logout() async {
_currentTokens = null;
_currentUser = null;
// Storage clearing is handled by the simplified client
}