NotificationServiceEventNames enum Models

The NotificationServiceEventNames enum gathers the NotificationService events.

Inheritance
Implemented types

Constructors

NotificationServiceEventNames(String value)
const

Values

invitationReceived → const NotificationServiceEventNames

Emitted when an application user receives an invitation.

NotificationServiceEventNames('EVENT_NOTIFICATION_INVITATION_RECEIVED')
conferenceStatus → const NotificationServiceEventNames

Emitted when the application user subscribed to any notification.

NotificationServiceEventNames('EVENT_NOTIFICATION_CONFERENCE_STATUS')
conferenceCreated → const NotificationServiceEventNames

Emitted to notify an application user, who subscribed to conferenceCreated, that a new conference was created.

NotificationServiceEventNames('EVENT_NOTIFICATION_CONFERENCE_CREATED')
conferenceEnded → const NotificationServiceEventNames

Emitted to notify an application user, who subscribed to conferenceEnded, that a conference was ended.

NotificationServiceEventNames('EVENT_NOTIFICATION_CONFERENCE_ENDED')
activeParticipants → const NotificationServiceEventNames

Emitted to notify an application user, who subscribed to activeParticipants, that a list of active participants is updated. The event informs how many participants joined a conference.

NotificationServiceEventNames('EVENT_NOTIFICATION_ACTIVE_PARTICIPANTS')
participantJoined → const NotificationServiceEventNames

Emitted to notify an application user, who subscribed to participantJoined, that a new participant joined a conference.

NotificationServiceEventNames("EVENT_NOTIFICATION_PARTICIPANT_JOINED")
participantLeft → const NotificationServiceEventNames

Emitted to notify an application user, who subscribed to participantLeft, that a participant left a conference.

NotificationServiceEventNames("EVENT_NOTIFICATION_PARTICIPANT_LEFT")

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
value String
final

Methods

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

valueOf(String? value) NotificationServiceEventNames

Constants

values → const List<NotificationServiceEventNames>
A constant List of the values in this enum, in order of their declaration.
[invitationReceived, conferenceStatus, conferenceCreated, conferenceEnded, activeParticipants, participantJoined, participantLeft]