KnownAddMemberRole enum

Overview

The object representing knownValues defined in Lexicon as an Enum.

Although the knownValues defined in Lexicon are not technically Enums, it is very useful to be able to treat these fields as type safe Enums.

Usage

Get JSON compatible value

// JSON compatible value.
final value = KnownAddMemberRole.something.value;

Convert to UAddMemberRole

final union = KnownAddMemberRole.something.toUnion();
Inheritance
Available extensions

Values

roleAdmin → const KnownAddMemberRole

Admin role. Highest level of access, can perform all actions.

const KnownAddMemberRole('tools.ozone.team.defs#roleAdmin')
roleModerator → const KnownAddMemberRole

Moderator role. Can perform most actions.

const KnownAddMemberRole('tools.ozone.team.defs#roleModerator')
roleTriage → const KnownAddMemberRole

Triage role. Mostly intended for monitoring and escalating issues.

const KnownAddMemberRole('tools.ozone.team.defs#roleTriage')

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
value String
JSON value based on lexicon.
final

Methods

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

valueOf(String? value) KnownAddMemberRole?
Returns KnownAddMemberRole associated with value, otherwise null.

Constants

values → const List<KnownAddMemberRole>
A constant List of the values in this enum, in order of their declaration.