shuffle method

void shuffle()

Implementation

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