stopAll method

FutureOr<int> stopAll()

@detail api @brief Stops playback of all audio effect files. @return - 0: Success. - < 0 : Fail. See ReturnStatus{@link #ReturnStatus} for more details. @note - After calling start{@link #IAudioEffectPlayer#start} 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', []);
}