SortingOrder enum Null safety
Sorting order of data points.
Specifies the data points based on the specified sorting property
Constants
- ascending → const SortingOrder
-
- SortingOrder.ascending, arranges the points in ascending order.
const SortingOrder(0)
- descending → const SortingOrder
-
- SortingOrder.descending, arranges the points in descending order.
const SortingOrder(1)
- none → const SortingOrder
-
- SortingOrder.none renders the points without sorting.
const SortingOrder(2)
-
values
→ const List<
SortingOrder> -
A constant List of the values in this enum, in order of their declaration.
const List<
SortingOrder>
Properties
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a non-existent method or property is accessed. [...]
inherited
-
toString(
) → String -
A string representation of this object. [...]
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator. [...]
inherited