Send a control response back to the session.
void sendControlResponse(Map<String, dynamic> response) { if (_ws == null || _state != WebSocketState.connected) return; _ws!.add(jsonEncode(response)); }