getCameraZoomMaxRatio method
@detail api @author zhangzhenyu.samuel @brief 获取当前使用的摄像头(前置/后置)的最大变焦倍数 @return 最大变焦倍数 @note 必须已调用 startVideoCapture{@link #RTCEngine#startVideoCapture} 使用 SDK 内部采集模块进行视频采集时,才能检测摄像头最大变焦倍数。
Implementation
Future<float?> getCameraZoomMaxRatio() async {
$a() => ($instance as $p_a.RTCEngine).getCameraZoomMaxRatio();
$i() => ($instance as $p_i.ByteRTCEngine).getCameraZoomMaxRatio();
if (Platform.isAndroid) {
return $a();
} else if (Platform.isIOS) {
return $i();
} else {
throw UnsupportedError(
'Not Support Platform ${Platform.operatingSystem}');
}
}