setZoomScale method

Future<void> setZoomScale(
  1. double zoom
)

Sets camera digital zoom scale factor.

Implementation

Future<void> setZoomScale(double zoom) async {
  await _controller.setZoomScale(zoom);
}