zoomCamera method

Future zoomCamera(
  1. double zoomValue
)

Zooms the camera to the specified zoom level.

  • zoomValue: The zoom level to set, typically between 1.0 (no zoom) and the maximum zoom level supported by the device.

Returns a Future that completes with the result of the zoom operation.

Implementation

Future<dynamic> zoomCamera(double zoomValue) {
  return broadcater.zoomCamera(zoomValue);
}