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.

const ParticipantType("listener")
user → const ParticipantType

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

const ParticipantType("user")
unknown → const ParticipantType

A participant whos type is not known.

const ParticipantType("unknown")

Properties

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

Methods

encode() String
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent 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.