isCameraExposurePositionSupported method
@detail api @author zhangzhenyu.samuel @brief 检查当前使用的摄像头是否支持手动设置曝光点。 @return - true: 支持。 - false: 不支持。 @note 必须已调用 startVideoCapture{@link #RTCEngine#startVideoCapture} 使用 SDK 内部采集模块进行视频采集时,才能检查曝光点设置能力。
Implementation
FutureOr<boolean> isCameraExposurePositionSupported() async {
return await nativeCall('isCameraExposurePositionSupported', []);
}