shuffle method Null safety

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

Shuffles the elements of this list randomly.

Implementation

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