destroyScreenCaptureSource method
- ZegoScreenCaptureSource source
销毁屏幕采集源对象
支持版本:3.1.0 及以上。 详情描述:销毁 ZegoScreenCaptureSource 屏幕采集源对象。 业务场景:不再需要使用屏幕采集功能时,可通过此函数销毁 createScreenCaptureSource 函数创建出来的实例对象。 调用时机:当需要销毁屏幕采集源对象时。 使用限制:销毁后,开发者需要自行释放持有的 ZegoScreenCaptureSource 实例对象,并且销毁后也不要再调用此实例对象的函数。 平台差异:仅支持 Windows 和 macOS。
source
需要销毁的屏幕采集源对象
Implementation
Future<void> destroyScreenCaptureSource(
ZegoScreenCaptureSource source) async {
return await ZegoExpressImpl.instance.destroyScreenCaptureSource(source);
}