enableCameraAutoExposureFaceMode method
@hidden(macOS, Windows, Linux) @valid since 353 @detail api @author yinkaisheng @brief Enable or disable face auto exposure mode during internal video capture. This mode fixes the problem that the face is too dark under strong backlight; but it will also cause the problem of too bright/too dark in the area outside the ROI region. @param enable Whether to enable the mode. True by default for iOS, False by default for Android. @return - 0: Success. - !0: Failure. @note Calling this API takes effect immediately whether before or after internal video capturing.
Implementation
FutureOr<int> enableCameraAutoExposureFaceMode(bool enable) async {
return await nativeCall('enableCameraAutoExposureFaceMode:', [enable]);
}