resume method
Implementation
Future<void> resume() async {
if (!_isPaused) return;
_isPaused = false;
_isPlaying = true;
await AudioPlayerPlatform.resume();
}
Future<void> resume() async {
if (!_isPaused) return;
_isPaused = false;
_isPlaying = true;
await AudioPlayerPlatform.resume();
}