logoutWithSessionId method
Logs out user from specific session
sessionId The session ID to clear user from
Implementation
Future<void> logoutWithSessionId(String sessionId) async {
if (_sessionManager != null) {
await _clearUserFromSession(sessionId);
}
}