setCameraExposureMode method

Future<void> setCameraExposureMode(
  1. ZegoCameraExposureMode mode,
  2. {ZegoPublishChannel? channel}
)

设置摄像头曝光模式。

支持版本:2.14.0 及以上 详情描述:设置摄像头曝光模式。 调用时机:在开启预览后 startPreview 后调用。 使用限制:目前只支持 iOS 和 Android 平台。 注意:此函数仅在 ZegoExpressVideo SDK 中有效!

  • mode 曝光模式。
  • channel 推流通道

Implementation

Future<void> setCameraExposureMode(ZegoCameraExposureMode mode,
    {ZegoPublishChannel? channel}) async {
  return await ZegoExpressImpl.instance
      .setCameraExposureMode(mode, channel: channel);
}