asReversed property

Iterable<E> get asReversed

Returns a view of the elements in this collection in reverse order.

If you want to reverse a List in-place you can use reverse from package:collection/collection.dart instead.

Implementation

Iterable<E> get asReversed => _ReversedIterable(this);