isCameraExposurePositionSupported method

FutureOr<bool> isCameraExposurePositionSupported()

@hidden(macOS) @detail api @author zhangzhenyu.samuel @brief Checks if manual exposure setting is available for the currently used camera. @return - true: Available. - false: Unavailable. @note You must call startVideoCapture{@link #ByteRTCEngine#startVideoCapture} to start SDK internal video capturing before calling this API.

Implementation

FutureOr<bool> isCameraExposurePositionSupported() async {
  return await nativeCall('isCameraExposurePositionSupported', []);
}