shuffle method

void shuffle([
  1. Random? random
])

Shuffles the elements of this list randomly.

Implementation

void shuffle([Random? random]) {
  this.getValue().shuffle(random);
  listUpdated();
}