pauseAll method
@detail api @brief Pauses the Playback of all audio effect files. @return - 0: Success. - < 0 : Fail. See ByteRTCReturnStatus{@link #ByteRTCReturnStatus} for more details. @note - After calling the start:filePath:config:{@link #ByteRTCAudioEffectPlayer#start:filePath:config} API to start playing audio effect files, you can pause playing all audio effect files by calling this API. - After calling this API to pause the playback of all audio effect files, you can call the resumeAll{@link #ByteRTCAudioEffectPlayer#resumeAll} API to resume all playback.
Implementation
FutureOr<int> pauseAll() async {
return await nativeCall('pauseAll', []);
}