setLocalVoiceReverbParam method
@detail api @author wangjunzheng @brief Set the reverb effect for the local captured audio. The audio includes both internal captured audio and external captured voice, but not the mixing audio file. @param config See VoiceReverbConfig{@link #VoiceReverbConfig}. @return - 0: Success. - < 0: Failure. See ReturnStatus{@link #ReturnStatus} for more details. @note Call enableLocalVoiceReverb{@link #RTCEngine#enableLocalVoiceReverb} to enable the reverb effect.
Implementation
FutureOr<int> setLocalVoiceReverbParam(VoiceReverbConfig config) async {
return await nativeCall('setLocalVoiceReverbParam', [config]);
}