Logs out user by clearing session
token In web context, this is the session ID
token
@override Future<void> logout(String sessionId) async { if (_sessionManager != null) { await _clearUserFromSession(sessionId); } }