SelectionEvent enum Null safety
Constructors
- SelectionEvent()
-
const
Values
- auto → const SelectionEvent
-
Unselect item if it selected, select otherwise
const SelectionEvent(0)
- select → const SelectionEvent
-
Select item
const SelectionEvent(1)
- unselect → const SelectionEvent
-
Deselect item
const SelectionEvent(2)
Properties
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
Constants
-
values
→ const List<
SelectionEvent> -
A constant List of the values in this enum, in order of their declaration.
[auto, select, unselect]