shuffle method Null safety
- @override
- [Random? random]
Shuffles the elements of this list randomly.
Implementation
@override
void shuffle([Random? random]) {
_values.shuffle(random);
notifyListeners();
}
Shuffles the elements of this list randomly.
@override
void shuffle([Random? random]) {
_values.shuffle(random);
notifyListeners();
}