getCameraMaxZoom method

Future<double> getCameraMaxZoom()

获取摄像头支持的最大视频缩放比例

Implementation

Future<double> getCameraMaxZoom() async {
  DoubleValue reply = await _api.getCameraMaxZoom();
  return reply.value ?? 0.0;
}