getZoomFactor method

Future<ZoomFactor?> getZoomFactor()

Gets the current zoom factor of the camera.

Returns a Future that completes with the current ZoomFactor.

Implementation

Future<ZoomFactor?> getZoomFactor() async {
  return await broadcater.getZoomFactor();
}