Future<void> setCameraExposurePosition (
    double positionXinView,
    double positionYinView
)
设置手动曝光位置。
成功调用该方法后,本地会触发 RtcEngineEventHandler.cameraExposureAreaChanged 回调。
Parameter positionXinView 触摸点相对于视图的横坐标。
Parameter positionYinView 触摸点相对于视图的纵坐标。
Implementation
Future<void> setCameraExposurePosition(
    double positionXinView, double positionYinView) {
  return _invokeMethod('setCameraExposurePosition', {
    'positionXinView': positionXinView,
    'positionYinView': positionYinView
  });
}

