void play()

Play the video.

Source

void play() {
  if (!isPlaying) {
    videoElement.play();
  }
}