resume method

Future<void> resume()

Resumes the audio that has been paused or stopped.

Implementation

Future<void> resume() async {
  desiredState = PlayerState.playing;
  await _resume();
}