muteVideo method

void muteVideo()

Mute the video

Implementation

void muteVideo() {
  _video.setVolume(0);
  isVideoMuted = true;
}