getComfortNoiseLevel method

Future<ComfortNoiseLevel> getComfortNoiseLevel()

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

Implementation

Future<ComfortNoiseLevel> getComfortNoiseLevel() async {
  return ComfortNoiseLevel.decode(
    await _methodChannel.invokeMethod<String?>("getComfortNoiseLevel"),
  );
}