setComfortNoiseLevel method

  1. @Deprecated('This method is deprecated in SDK 3.7 and replaced with the [setComfortNoiseLevel](./../LocalAudio/setComfortNoiseLevel.html) method available in the [LocalAudio](./../LocalAudio-class.html) model.')
Future<void> setComfortNoiseLevel(
  1. ComfortNoiseLevel noiseLevel
)

Sets the comfort noise level for output devices in Dolby Voice conferences.

Implementation

@Deprecated(
    'This method is deprecated in SDK 3.7 and replaced with the [setComfortNoiseLevel](./../LocalAudio/setComfortNoiseLevel.html) method available in the [LocalAudio](./../LocalAudio-class.html) model.')
Future<void> setComfortNoiseLevel(ComfortNoiseLevel noiseLevel) async {
  return await _methodChannel.invokeMethod<void>(
      "setComfortNoiseLevel", {"noiseLevel": noiseLevel.encode()});
}