resumeAll method
@detail api @brief 恢复播放所有音效文件。 @return - 0: 调用成功。 - < 0 : 调用失败。查看 ByteRTCReturnStatus{@link #ByteRTCReturnStatus} 获得更多错误说明 @note 调用 pauseAll{@link #ByteRTCAudioEffectPlayer#pauseAll} 方法暂停所有正在播放音效文件后,可以通过调用本方法恢复播放。
Implementation
FutureOr<int> resumeAll() async {
return await nativeCall('resumeAll', []);
}