resume method

FutureOr<int> resume()

@detail api @brief After calling pause{@link #ByteRTCMediaPlayer#pause} to pause audio mixing, call this API to resume audio mixing. @return - 0: Success. - < 0 : Fail. See ByteRTCReturnStatus{@link #ByteRTCReturnStatus} for more details. @note The API is valid for audio file, not PCM data.

Implementation

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