setZoom method

Future<void> setZoom(
  1. double zoom
)

缩放

zoom 缩放值0:MaxZoom

Implementation

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