stopAllAudioEffects method
ZH
停止全部音效文件播放, 仅供会议用户或直播主播用户使用 @return 0: 成功, 非0: 失败
EN
Stop all sound effects playback (meeting hosts or live streamers only) @return 0: success, non-zero: failure
Implementation
Future<int> stopAllAudioEffects() async {
int code = await _channel.invokeMethod('stopAllAudioEffects') ?? -1;
return code;
}