shuffle method
void
shuffle()
Implementation
void shuffle() {
final temp = List<T>.from(value);
temp.shuffle();
value = temp;
}
void shuffle() {
final temp = List<T>.from(value);
temp.shuffle();
value = temp;
}