pause method
void
pause()
Stop the sound, but keep it's position.
If sound is looped, when played again will wait loopDelay
and play. If you do not want this, use stop()
.
Implementation
void pause() => _sound.pause();