getCameraZoomMaxRatio method

Future<double?> getCameraZoomMaxRatio()

获取摄像头的缩放因子

注意:此接口只支持和Android和iOS平台

Implementation

Future<double?> getCameraZoomMaxRatio() async {
  var result = await _channel.invokeMethod('getCameraZoomMaxRatio');
  return V2TXLiveFlutterResult.doubleValue(result);
}