play method

void play()

Play the video.

Implementation

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