getComfortNoiseLevel method

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

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

Implementation

@Deprecated(
    'This method is deprecated in SDK 3.7 and replaced with the [getComfortNoiseLevel](./../LocalAudio/getComfortNoiseLevel.html) method available in the [LocalAudio](./../LocalAudio-class.html) model.')
Future<ComfortNoiseLevel> getComfortNoiseLevel() async {
  return Future.value(ComfortNoiseLevel.decode(
      await _methodChannel.invokeMethod<String?>("getComfortNoiseLevel")));
}