isCameraExposurePositionSupported method

  1. @override
Future<bool?> isCameraExposurePositionSupported()

Checks whether the camera exposure function is supported.

Ensure that you call this method after the camera starts, for example, by calling startPreview or joinChannel.

Returns

  • true: The device supports the camera exposure function.
  • false: The device does not support the camera exposure function.

Implementation

@override
Future<bool?> isCameraExposurePositionSupported() {
  return _invokeMethod('isCameraExposurePositionSupported');
}