sendToUser method
Send a message to a specific user (by user ID). The adapter is responsible for mapping user ID to client ID(s).
Implementation
@override
void sendToUser(dynamic userId, String event, dynamic data) {
final clientId = _userClientMap[userId];
if (clientId != null) {
_clients[clientId]?.send(event, data);
}
}