ConferencePermission enum Models

The ConferencePermission enum gathers the possible permissions a participant may have in a conference.

Inheritance

Constructors

ConferencePermission(String _value)
const

Values

invite → const ConferencePermission

Allows a participant to invite other participants to a conference.

ConferencePermission('INVITE')
join → const ConferencePermission

Allows a participant to join a conference.

ConferencePermission('JOIN')
kick → const ConferencePermission

Allows a participant to kick other participants from a conference

ConferencePermission('KICK')
record → const ConferencePermission

Allows a participant to record a conference.

ConferencePermission('RECORD')
sendAudio → const ConferencePermission

Allows a participant to send an audio stream during a conference.

ConferencePermission('SEND_AUDIO')
sendMessage → const ConferencePermission

Allows a participant to send a message to other participants during a conference.

ConferencePermission('SEND_MESSAGE')
sendVideo → const ConferencePermission

Allows a participant to send a video stream during a conference.

ConferencePermission('SEND_VIDEO')
shareFile → const ConferencePermission

Allows a participant to share a file during a conference.

ConferencePermission('SHARE_FILE')
shareScreen → const ConferencePermission

Allows a participant to share a screen during a conference.

ConferencePermission('SHARE_SCREEN')
shareVideo → const ConferencePermission

Allows a participant to share a video during a conference.

ConferencePermission('SHARE_VIDEO')
stream → const ConferencePermission

Allows a participant to stream a conference.

ConferencePermission('STREAM')
updatePermissions → const ConferencePermission

Allows a participant to update other participants' permissions.

ConferencePermission('UPDATE_PERMISSIONS')

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

Constants

values → const List<ConferencePermission>
A constant List of the values in this enum, in order of their declaration.
[invite, join, kick, record, sendAudio, sendMessage, sendVideo, shareFile, shareScreen, shareVideo, stream, updatePermissions]