ConferencePermission enum Models
The ConferencePermission enum gathers the possible permissions a participant may have in a conference.
Values
- invite → const ConferencePermission
-
Allows a participant to invite other participants to a conference.
const ConferencePermission('INVITE') - join → const ConferencePermission
-
Allows a participant to join a conference.
const ConferencePermission('JOIN') - kick → const ConferencePermission
-
Allows a participant to kick other participants from a conference
const ConferencePermission('KICK') - record → const ConferencePermission
-
Allows a participant to record a conference.
const ConferencePermission('RECORD') - sendAudio → const ConferencePermission
-
Allows a participant to send an audio stream during a conference.
const ConferencePermission('SEND_AUDIO') - sendMessage → const ConferencePermission
-
Allows a participant to send a message to other participants during a conference.
const ConferencePermission('SEND_MESSAGE') - sendVideo → const ConferencePermission
-
Allows a participant to send a video stream during a conference.
const ConferencePermission('SEND_VIDEO') -
Allows a participant to share a file during a conference.
const ConferencePermission('SHARE_FILE') -
Allows a participant to share a screen during a conference.
const ConferencePermission('SHARE_SCREEN') -
Allows a participant to share a video during a conference.
const ConferencePermission('SHARE_VIDEO') - stream → const ConferencePermission
-
Allows a participant to stream a conference.
const ConferencePermission('STREAM') - updatePermissions → const ConferencePermission
-
Allows a participant to update other participants' permissions.
const ConferencePermission('UPDATE_PERMISSIONS')
Properties
- hashCode → int
-
The hash code for this object.
no setterinherited
- index → int
-
A numeric identifier for the enumerated value.
no setterinherited
- name → String
-
Available on Enum, provided by the EnumName extension
The name of the enum value.no setter - 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) → ConferencePermission
Constants
-
values
→ const List<
ConferencePermission> - A constant List of the values in this enum, in order of their declaration.