setExposure method

Future<void> setExposure(
  1. double exposure
)

设置曝光度

exposure 曝光度

Implementation

Future<void> setExposure(double exposure) async {
  return _livePusherMethodChannel.invokeMethod(
    'setExposure',
    wrapArgs(arg: exposure.toString()),
  );
}