setShuffled method

void setShuffled(
  1. bool b
)

Assigns the argument b to shuffled and calls notifyListeners

Implementation

void setShuffled(bool b){
  shuffled = b;
  notifyListeners();
}