QuickBlox SDK can send application-level pings to a user. As a result, you can check if the user is connected to the Chat server.
Dart
Copy
Ask AI
int userId = 89987878;try { await QB.chat.pingUser(userId);} on PlatformException catch (e) { // Some error occurred, look at the exception message for more details}