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 param See ByteRTCVoiceReverbConfig{@link #ByteRTCVoiceReverbConfig}. @return - 0: Success. - < 0: Failure. See ByteRTCReturnStatus{@link #ByteRTCReturnStatus} for more details. @note Call enableLocalVoiceReverb:{@link #ByteRTCEngine#enableLocalVoiceReverb} to enable the reverb effect.
Implementation
FutureOr<int> setLocalVoiceReverbParam(ByteRTCVoiceReverbConfig param) async {
return await nativeCall('setLocalVoiceReverbParam:', [param]);
}