KnownSubjectReviewState 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 = KnownSubjectReviewState.something.value;
Convert to USubjectReviewState
final union = KnownSubjectReviewState.something.toUnion();
- Inheritance
- Available extensions
Values
- reviewOpen → const KnownSubjectReviewState
-
Moderator review status of a subject: Open. Indicates that the subject needs to be reviewed by a moderator
const KnownSubjectReviewState('#reviewOpen')
- reviewEscalated → const KnownSubjectReviewState
-
Moderator review status of a subject: Escalated. Indicates that the subject was escalated for review by a moderator
const KnownSubjectReviewState('#reviewEscalated')
- reviewClosed → const KnownSubjectReviewState
-
Moderator review status of a subject: Closed. Indicates that the subject was already reviewed and resolved by a moderator
const KnownSubjectReviewState('#reviewClosed')
- reviewNone → const KnownSubjectReviewState
-
Moderator review status of a subject: Unnecessary. Indicates that the subject does not need a review at the moment but there is probably some moderation related metadata available for it
const KnownSubjectReviewState('#reviewNone')
Properties
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) → KnownSubjectReviewState? -
Returns KnownSubjectReviewState associated with
value
, otherwise null.
Constants
-
values
→ const List<
KnownSubjectReviewState> - A constant List of the values in this enum, in order of their declaration.