sendTurnComplete method
Signals that the user has finished their current turn. Use when you've disabled server-side VAD and want explicit boundaries.
Implementation
Future<void> sendTurnComplete() async {
final ch = _channel;
if (ch == null) return;
_send({
'client_content': {'turn_complete': true},
});
}