reversedCopy method
New list with elements in reverse order.
Implementation
@useResult
List<T> reversedCopy() => List<T>.of(this).reversed.toList();
New list with elements in reverse order.
@useResult
List<T> reversedCopy() => List<T>.of(this).reversed.toList();