void destroyAll ()
销毁所有的 RtcChannel 对象。
Implementation
static void destroyAll() {
_channels.forEach((key, value) async {
await value.destroy();
});
_channels.clear();
}
最近更新时间:2022-09-20 05:17:40
void destroyAll ()
销毁所有的 RtcChannel 对象。
static void destroyAll() {
_channels.forEach((key, value) async {
await value.destroy();
});
_channels.clear();
}