resetBoard method

void resetBoard({
  1. bool notify = true,
})

Implementation

void resetBoard({final bool notify = true}) {
  game.reset();
  if (notify) {
    _notifyListeners();
  }
}