stopAudioMixing method
ZH
停止混音, 仅供会议用户或直播主播用户使用 @return 0: 成功, 非0: 失败
EN
Stop audio mixing (for meeting hosts or live streamers only) @return 0: success, non-zero: failure
Implementation
Future<int> stopAudioMixing() async {
int code = await _channel.invokeMethod('stopAudioMixing') ?? -1;
return code;
}