sortedDescending property

List<E> sortedDescending

Returns a List of all elements sorted descending according to their natural sort order.

Implementation

List<E> get sortedDescending => toList()..sort((a, b) => b.compareTo(a));