setScramble method

void setScramble(
  1. String scramble
)

Establece el scramble actual y notifica a los listeners.

Implementation

void setScramble(String scramble) {
  _scramble = scramble;
  // NOTIFICA A LOS LISTENERS QUE EL ESTADO HA CAMBIADO
  notifyListeners();
}