silentShuffle method

void silentShuffle([
  1. Random? random
])

shuffles the list without notifying any listeners.

Implementation

void silentShuffle([Random? random]) {
  value.shuffle(random);
}