removeLiveCdn method

Future<int> removeLiveCdn(
  1. String url
)

ZH

移除 CDN 直播推流地址, 仅供直播主播用户使用 @param url 推流地址 @return 0: 成功, 非0: 失败

EN

Remove CDN live streaming URL (for hosts only) @param url Streaming URL @return 0: success, non-zero: failed

Implementation

Future<int> removeLiveCdn(String url) async {
  int code = await _channel.invokeMethod('removeLiveCdn', url) ?? -1;
  return code;
}