shuffled method

Coral<List<E>> shuffled([
  1. Random? random
])

Returns a list containing the elements of this collection shuffled reactively.

Implementation

Coral<List<E>> shuffled([Random? random]) =>
    coral.map((source) => List.unmodifiable(source.shuffled(random)));