setZoom method

Future<void> setZoom(
  1. double value
)

Sets the camera zoom.

Implementation

Future<void> setZoom(double value) {
  return _channel.invokeMethod(_setZoomMethod, value);
}