ParticipantType enum Models

The ParticipantType enum gathers the possible types of a conference participant.

Inheritance

Constructors

ParticipantType(String _value)
const

Values

listner → const ParticipantType

A participant who cannot send any audio or video stream to a conference.

ParticipantType("listener")
user → const ParticipantType

A participant who can send and receive audio and video during the conference.

ParticipantType("user")
unknown → const ParticipantType

A participant whos type is not known.

ParticipantType("unknown")

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) ParticipantType?

Constants

values → const List<ParticipantType>
A constant List of the values in this enum, in order of their declaration.
[listner, user, unknown]