zoomVideo method

Future<void> zoomVideo(
  1. int factor
)

zooms into the image
0 is no zoom at all
1 is twice the size\

Implementation

Future<void> zoomVideo(int factor) {
  return socket.setProperty('video-zoom', factor);
}