NoiseReduction enum Models

The NoiseReductionLevel model allows selecting the preferred level of noise reduction.

This model is available in SDK 3.7 and later.

Inheritance

Constructors

NoiseReduction(String _value)
const

Values

high → const NoiseReduction

The default level that removes all background sounds to improve voice quality. Use this mode if you want to send only voice to a conference.

NoiseReduction('high')
low → const NoiseReduction

Removes stationary background sounds, such as the sound of a computer fan, air conditioning, or microphone hum, from audio transmitted to a conference. In this mode, non-stationary sounds are transmitted to give participants full context of other participants' environments and create a more realistic audio experience. If you want to send only voice to a conference, use the High level.

NoiseReduction('low')

Properties

hashCode int
The hash code for this object.
read-onlyinherited
index int
A numeric identifier for the enumerated value.
read-onlyinherited
runtimeType Type
A representation of the runtime type of the object.
read-onlyinherited

Methods

encode() String
noSuchMethod(Invocation invocation) → dynamic
Invoked when a non-existent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

decode(String? value) NoiseReduction?

Constants

values → const List<NoiseReduction>
A constant List of the values in this enum, in order of their declaration.
[high, low]