reversedCopy method

  1. @useResult
List<T> reversedCopy()

New list with elements in reverse order.

Implementation

@useResult
List<T> reversedCopy() => List<T>.of(this).reversed.toList();