resumeAll method

FutureOr<int> resumeAll()

@detail api @brief Resumes the playback of all audio effect files. @return - 0: Success. - < 0 : Fail. See ByteRTCReturnStatus{@link #ByteRTCReturnStatus} for more details. @note After calling the pauseAll{@link #ByteRTCAudioEffectPlayer#pauseAll} API to pause all the audio effect files being played, you can resume playback by calling this API.

Implementation

FutureOr<int> resumeAll() async {
  return await nativeCall('resumeAll', []);
}