stopAudioPlayback method
void
stopAudioPlayback()
Stops audio playback mid-sentence and resumes listening so the user can speak again without waiting for the AI to finish talking.
Implementation
void stopAudioPlayback() {
_voicePlaybackService.clearAll();
isVoicePlaying.value = false;
_resumeVoiceListeningIfNeeded();
}