ListSeparator enum
An enum of list separator types.
Values
- space → const ListSeparator
-
A space-separated list.
const ListSeparator('space', ' ')
- comma → const ListSeparator
-
A comma-separated list.
const ListSeparator('comma', ',')
- slash → const ListSeparator
-
A slash-separated list.
const ListSeparator('slash', '/')
- undecided → const ListSeparator
-
A separator that hasn't yet been determined.
Singleton lists and empty lists don't have separators defined. This means that list functions will prefer other lists' separators if possible.
const ListSeparator('undecided', null)
Properties
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
override
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
Constants
-
values
→ const List<
ListSeparator> - A constant List of the values in this enum, in order of their declaration.