pauseForInterruption method
Implementation
Future<void> pauseForInterruption() async {
if (!value.isPlaying) return;
_pausedByInterruption = true;
await pause();
}
Future<void> pauseForInterruption() async {
if (!value.isPlaying) return;
_pausedByInterruption = true;
await pause();
}