shuffle method

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

Shuffles the elements of this list randomly.

Implementation

@override
void shuffle([Random? random]) {
  value.shuffle(random);
  notifyListeners();
}