sendNow method

Future<void> sendNow()

Force process current audio (push-to-talk) Matches iOS VoiceSessionHandle.sendNow()

Implementation

Future<void> sendNow() async {
  if (!_isRunning) return;
  _isSpeechActive = false;
  await _processCurrentAudio();
}