isCameraExposurePositionSupported method

Future<bool> isCameraExposurePositionSupported()

ZH

摄像头是否支持区域测光 @return 0: 成功, 非0: 失败

EN

Checks if camera supports zone metering @return 0: success, non-zero: failure

Implementation

Future<bool> isCameraExposurePositionSupported() async {
  bool result =
      await _channel.invokeMethod('isCameraExposurePositionSupported') ??
      false;
  return result;
}