resume method

FutureOr<int> resume(
  1. int effectId
)

@detail api @brief 恢复播放音效文件。 @param effectId 音效 ID @return - 0: 调用成功。 - < 0 : 调用失败。查看 ByteRTCReturnStatus{@link #ByteRTCReturnStatus} 获得更多错误说明 @note 调用 pause:{@link #ByteRTCAudioEffectPlayer#pause} 方法暂停播放音效文件后,可以通过调用本方法恢复播放。

Implementation

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