sendNow method
Force process current audio (push-to-talk) Matches iOS VoiceSessionHandle.sendNow()
Implementation
Future<void> sendNow() async {
if (!_isRunning) return;
_isSpeechActive = false;
await _processCurrentAudio();
}
Force process current audio (push-to-talk) Matches iOS VoiceSessionHandle.sendNow()
Future<void> sendNow() async {
if (!_isRunning) return;
_isSpeechActive = false;
await _processCurrentAudio();
}