pause method

Future<void> pause()

Implementation

Future<void> pause() async {
  _isPaused = true;
  await _player.pause();
}