resume method
Resumes the audio that has been paused or stopped.
Implementation
Future<void> resume() async {
  desiredState = PlayerState.playing;
  await _resume();
}
Resumes the audio that has been paused or stopped.
Future<void> resume() async {
  desiredState = PlayerState.playing;
  await _resume();
}