stopPreview method

Future<void> stopPreview(
  1. {ZegoPublishChannel? channel}
)

停止本地预览,支持设置其他通道的推流

支持版本:1.1.0 及以上。 详情描述:当本地不需要预览时可调用此函数停止预览。 注意事项:停止预览不会影响推流、拉流功能。 注意:此函数仅在 ZegoExpressVideo SDK 中有效!

  • channel 推流通道

Implementation

Future<void> stopPreview({ZegoPublishChannel? channel}) async {
  return await ZegoExpressImpl.instance.stopPreview(channel: channel);
}