setCameraZoomRatio method

Future<int?> setCameraZoomRatio(
  1. double value
)

设置摄像头的缩放因子(焦距)(仅适用于 Android 和 iOS 平台)

取值范围为 1-51 表示最远视图(普通镜头),5 表示最近视图(放大镜头)。建议最大值设置为 5,如果大于 5,画面会变得模糊。

参数:

value 取值范围:1-5。值越大,焦距越远

返回值。0:成功;负数:失败

Implementation

Future<int?> setCameraZoomRatio(
    double
        value // Value range: 1–5. The greater the value, the further the focal length
    ) {
  return _channel.invokeMethod('setCameraZoomRatio', {
    "value": value.toString(),
  });
}