shuffle method

  1. @override
void shuffle([
  1. Random? random
])
override

Shuffles the elements of this list randomly.

Implementation

@override
void shuffle([Random? random]) {
  return _collective.shuffle(random);
}