shuffle method

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

Shuffles the elements of this list randomly.

Implementation

@override
void shuffle([math.Random? random]) => _wrappedList.shuffle(random);