reversedRange method
Returns a new list with a range of elements reversed.
Implementation
Coral<List<E>> reversedRange(int start, int end) => _listCoral.map((list) {
final copy = list.toList();
col.ListExtensions(copy).reverseRange(start, end);
return List<E>.unmodifiable(copy);
});