shuffledRange method
Returns a new list with a range of elements shuffled.
Implementation
Coral<List<E>> shuffledRange(int start, int end, [Random? random]) =>
_listCoral.map((list) {
final copy = list.toList();
col.ListExtensions(copy).shuffleRange(start, end, random);
return List<E>.unmodifiable(copy);
});