setComfortNoiseLevel method

Future<void> setComfortNoiseLevel(
  1. ComfortNoiseLevel noiseLevel
)

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

Implementation

Future<void> setComfortNoiseLevel(ComfortNoiseLevel noiseLevel) async {
  return await _methodChannel.invokeMethod<void>(
    "setComfortNoiseLevel",
    {"noiseLevel": noiseLevel.encode()},
  );
}