play method

Future play()

Implementation

Future play() async {
  try {
    try {
      if ((stream == null) || (!video.paused)) return;
      Log().debug("Playing Camera");
      video.play();
      Log().debug("Camera Playing");
    } catch(e) {}
  } catch(e) {}
}