BoardColumnKind enum
Semantic category of a Kanban roadmap board column.
Used to differentiate backlog / triage stages, active development, and shipped items.
Example
final kind = BoardColumnKind.fromWire('pending_review');
if (kind == BoardColumnKind.pendingReview) {
print('Column requires moderation');
}
Values
- pendingReview → const BoardColumnKind
-
Intake or triage column holding newly submitted user suggestions.
const BoardColumnKind('pending_review') - normal → const BoardColumnKind
-
Standard progress column (e.g.
'Planned','In Progress').const BoardColumnKind('normal') - done → const BoardColumnKind
-
Completed stage column containing shipped or released features.
const BoardColumnKind('done')
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
- wireValue → String
-
Wire string representation for API payloads.
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
-
fromWire(
String? value) → BoardColumnKind - Parses a wire string representation into a BoardColumnKind.
Constants
-
values
→ const List<
BoardColumnKind> - A constant List of the values in this enum, in order of their declaration.