getValue method

dynamic getValue()

Converts this enum's values to String.

Implementation

dynamic getValue() => switch (this) {
  ParticipantNotification.off => false,
  ParticipantNotification.on => true,
  ParticipantNotification.mentionsOnly => 'MentionsOnly',
};