setZoom method

Future<void> setZoom(
  1. double zoom
)

缩放

zoom 缩放值0:MaxZoom

Implementation

Future<void> setZoom(double zoom) async {
  return _livePusherMethodChannel.invokeMethod(
    'setZoom',
    wrapArgs(arg: zoom.toString()),
  );
}