resume method
Implementation
Future<void> resume(AudioPlayer player) async {
_state = _state?.copyWith(status: AudioStatus.playing);
await player.resume();
}
Future<void> resume(AudioPlayer player) async {
_state = _state?.copyWith(status: AudioStatus.playing);
await player.resume();
}