sorted property

List<E> sorted

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

Implementation

List<E> get sorted => toList()..sort();