pause method
Implementation
@override
void pause() {
if (_audioElement != null) {
isPlaying = false;
forwardHandler?.stop();
_audioElement?.pause();
}
}
@override
void pause() {
if (_audioElement != null) {
isPlaying = false;
forwardHandler?.stop();
_audioElement?.pause();
}
}