setAudioProcessing method

  1. @Deprecated('This method is deprecated in SDK 3.7 and replaced with the [setCaptureMode](./../LocalAudio/setCaptureMode.html) method.')
Future<void> setAudioProcessing(
  1. AudioProcessingOptions options
)

Enables and disables audio processing for the local participant. The options parameter refers to additional audio processing options.

Implementation

@Deprecated(
    'This method is deprecated in SDK 3.7 and replaced with the [setCaptureMode](./../LocalAudio/setCaptureMode.html) method.')
Future<void> setAudioProcessing(AudioProcessingOptions options) async {
  await _methodChannel.invokeMethod<void>(
      "setAudioProcessing", options.toJson());
  return Future.value();
}