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