unmuteVideo method

void unmuteVideo()

Unmute the video

Implementation

void unmuteVideo() {
  _video.setVolume(1);
  isVideoMuted = false;
}