setCameraExposurePosition method

Future<void> setCameraExposurePosition (
  1. double positionXinView,
  2. double positionYinView
)

设置手动曝光位置。

成功调用该方法后,本地会触发 RtcEngineEventHandler.cameraExposureAreaChanged 回调。

Parameter positionXinView 触摸点相对于视图的横坐标。

Parameter positionYinView 触摸点相对于视图的纵坐标。

Implementation

@override
Future<void> setCameraExposurePosition(
    double positionXinView, double positionYinView) {
  return _invokeMethod('setCameraExposurePosition', {
    'positionXinView': positionXinView,
    'positionYinView': positionYinView
  });
}