pause method

void pause()

Implementation

void pause() {
  if (!_playing) {
    return;
  }
  _playing = false;
  _callFunctions(_onPauseds);
}