play method

Future<void> play()

Start Playing video or videos

Implementation

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