reset method

void reset()

Starts a new game with the same players, teams, and bot seats.

Implementation

void reset() {
  _checkNotDisposed();
  _abortInFlight();
  _state = LudoGameState.initial(_state.players, teams: _state.teams);
  _notify();
  _scheduleNext();
}