unpublishCustomStream method

Future<int> unpublishCustomStream(
  1. String tag
)

ZH

取消发布自定义视频 @param tag @return 0: 成功, 非0: 失败

EN

Unpublish custom video @param tag @return 0: success, non-zero: failed

Implementation

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