ascending method
Implementation
Comparator<T> ascending(bool ascending) {
if (ascending) {
return this;
} else {
return reversed;
}
}
Comparator<T> ascending(bool ascending) {
if (ascending) {
return this;
} else {
return reversed;
}
}