logout method

Future<void> logout()

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
}