ListStyle enum
The list-style-type CSS property sets the marker (such as a disc, character, or custom counter style) of a list
item element.
Read more: MDN list-style-type
Values
- disc → const ListStyle
-
A filled circle (default value).
const ListStyle('disc') - circle → const ListStyle
-
A hollow circle.
const ListStyle('circle') - square → const ListStyle
-
A filled square.
const ListStyle('square') - decimal → const ListStyle
-
Decimal numbers, beginning with 1.
const ListStyle('decimal') - none → const ListStyle
-
No item marker is shown.
const ListStyle('none') - lowerAlpha → const ListStyle
-
Lowercase ASCII letters.
const ListStyle('lower-alpha') - upperAlpha → const ListStyle
-
Uppercase ASCII letters.
const ListStyle('upper-alpha') - lowerGreek → const ListStyle
-
Lowercase classical Greek.
const ListStyle('lower-greek') - upperGreek → const ListStyle
-
Uppercase classical Greek.
const ListStyle('upper-greek') - lowerLatin → const ListStyle
-
Lowercase ASCII letters.
const ListStyle('lower-latin') - upperLatin → const ListStyle
-
Uppercase ASCII letters.
const ListStyle('upper-latin') - lowerRoman → const ListStyle
-
Lowercase roman numerals.
const ListStyle('lower-roman') - upperRoman → const ListStyle
-
Uppercase roman numerals.
const ListStyle('upper-roman') - inherit → const ListStyle
-
const ListStyle('inherit') - initial → const ListStyle
-
const ListStyle('initial')
Properties
- hashCode → int
-
The hash code for this object.
no setterinherited
- index → int
-
A numeric identifier for the enumerated value.
no setterinherited
- name → String
-
Available on Enum, provided by the EnumName extension
The name of the enum value.no setter - runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
- value → String
-
final
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited