toggleShuffle method

void toggleShuffle()

toggle the shuffling state if it was shuffling -> stops this if it was'nt shuffling -> now it is

Implementation

void toggleShuffle() {
  shuffle = !shuffle;
  _updatePlaylistIndexes();
}