shuffle method

void shuffle([
  1. Random? random
])

Shuffles the elements of this list randomly.

Implementation

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