stopCloudProxy method

FutureOr<int> stopCloudProxy()

@detail api @author daining.nemo @brief 关闭云代理 @return - 0: 调用成功。 - < 0 : 调用失败。查看 ByteRTCReturnStatus{@link #ByteRTCReturnStatus} 获得更多错误说明 @note 要开启云代理,调用 startCloudProxy:{@link #ByteRTCEngine#startCloudProxy}

Implementation

FutureOr<int> stopCloudProxy() async {
  return await nativeCall('stopCloudProxy', []);
}