resume method
Resumes the audio thread; the worker's pump unblocks on its own.
Implementation
Future<void> resume() async {
_paused = false;
await _sink.resume();
}
Resumes the audio thread; the worker's pump unblocks on its own.
Future<void> resume() async {
_paused = false;
await _sink.resume();
}