pause method

Future<void> pause()

Pause video

Implementation

Future<void> pause() async {
  isPlay.value = false;
  await _player.pause();
}