isCameraExposurePositionSupported method

Future<bool> isCameraExposurePositionSupported()

Implementation

Future<bool> isCameraExposurePositionSupported() async {
  bool? supported = await channel.invokeMethod("isCameraExposurePositionSupported");
  return supported ?? false;
}