setAudioCaptureVolume method
Set the capturing volume of local audio
Parameters:
- volume(int):
- Volume. 100 is the original volume.
- Value range:
0, 150. - Default value: 100.
Note: If 100 is still not loud enough for you, you can set the volume to up to 150, but there may be side effects.
Implementation
@override
void setAudioCaptureVolume(int volume) {
TRTCLog(_tag, "setAudioCaptureVolume: $volume");
TRTCCloudNative.instance.setAudioCaptureVolume(volume);
}