ListSeparator enum Value

An enum of list separator types.

Inheritance

Constructors

ListSeparator(String _name, String? separator)
const

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

hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
separator String?
The separator character.
final

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.