If anybody getting an issue in the audio_service library in flutter then this minor code may be helpful in fixing it
WillPopScope(
onWillPop: () async {
await _audioHandler.stop();
return true;
},
child: Scaffold(...))
If anybody getting an issue in the audio_service library in flutter then this minor code may be helpful in fixing it
WillPopScope(
onWillPop: () async {
await _audioHandler.stop();
return true;
},
child: Scaffold(...))
Copyright © 2021 Jogjafile Inc.
I got this error because I initialized
just_audio_background
andaudio_service
package at the same time.