resume method
Resumes the audio that has been paused or stopped.
Implementation
Future<void> resume() async {
await creatingCompleter.future;
await _platform.resume(playerId);
state = PlayerState.playing;
}
Resumes the audio that has been paused or stopped.
Future<void> resume() async {
await creatingCompleter.future;
await _platform.resume(playerId);
state = PlayerState.playing;
}