ListSeparator enum Value
An enum of list separator types.
Constructors
- ListSeparator(String _name, String? separator)
-
const
Values
- space → const ListSeparator
-
A space-separated list.
ListSeparator('space', ' ')
- comma → const ListSeparator
-
A comma-separated list.
ListSeparator('comma', ',')
- slash → const ListSeparator
-
A slash-separated list.
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.
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.
[space, comma, slash, undecided]