shuffle method

void shuffle([
  1. Random? random
])

Shuffles the keys of this map randomly.

Implementation

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