ListSeparator class
An enum of list separator types.
- Annotations
- @sealed
Properties
- hashCode → int
-
The hash code for this object. [...]
read-only, inherited
- runtimeType → Type
-
A representation of the runtime type of the object.
read-only, inherited
- separator → String
-
The separator character. [...]
final
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a non-existent method or property is accessed. [...]
inherited
-
toString(
) → String -
Returns a string representation of this object.
override
Operators
-
operator ==(
Object other) → bool -
The equality operator. [...]
inherited
Constants
- comma → const ListSeparator
-
A comma-separated list.
const ListSeparator._("comma", ",")
- space → const ListSeparator
-
A space-separated list.
const ListSeparator._("space", " ")
- undecided → const ListSeparator
-
A separator that hasn't yet been determined. [...]
const ListSeparator._("undecided", null)