setCloudProxyConfig static method

Future<void> setCloudProxyConfig(
  1. List<ZegoProxyInfo> proxyList,
  2. String token,
  3. bool enable
)

设置云代理配置

支持版本:3.1.0 及以上。 详情描述:设置云代理配置。 调用时机:必须在调用 createEngine 之前设置才生效,否则会失败。 使用限制:createEngine 后无法更改代理。 注意事项:无。

  • proxyList 代理详细信息。
  • token 鉴权信息。如果使用 AppSign 鉴权可忽略,填空。
  • enable 是否开启代理。

Implementation

static Future<void> setCloudProxyConfig(
    List<ZegoProxyInfo> proxyList, String token, bool enable) async {
  return await ZegoExpressImpl.setCloudProxyConfig(proxyList, token, enable);
}