shuffle method

void shuffle([
  1. Random? random
])

Iterable.shuffle.

Implementation

void shuffle([math.Random? random]) {
  _list.shuffle(random);
  notify();
}