AudioCaptureMode enum Models

The AudioCaptureMode model allows selecting the preferred mode for capturing the local participant's audio.

This model is available in SDK 3.7 and later.

Inheritance

Constructors

AudioCaptureMode(String _value)
const

Values

standard → const AudioCaptureMode

The default mode aimed at enhancing speech to create a conversation-focused conference environment. This mode optimizes captured audio for speech by aggressively removing non-speech content, such as background noise.

AudioCaptureMode('standard')
unprocessed → const AudioCaptureMode

Disables audio processing to allow transmitting non-voice audio to a conference.

AudioCaptureMode('unprocessed')

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) AudioCaptureMode

Constants

values → const List<AudioCaptureMode>
A constant List of the values in this enum, in order of their declaration.
[standard, unprocessed]