destroyAll method

void destroyAll ()

销毁所有的 RtcChannel 对象。

Implementation

static void destroyAll() {
  _channels.forEach((key, value) async {
    await value.destroy();
  });
  _channels.clear();
}