getCurrentExposure method

Future<double> getCurrentExposure()

获取当前曝光度

returns 当前曝光度

Implementation

Future<double> getCurrentExposure() async {
  return await _livePusherMethodChannel.invokeMethod(
    'getCurrentExposure',
    wrapArgs(),
  );
}