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