start method

ActionResult start({
  1. bool notify = true,
})

Starts this game.

Implementation

ActionResult start({bool notify = true}) {
  countdown?.start();
  _isStarted = true;
  ActionResult result = goToRoom(_currentRoom);
  if (notify) {
    notifyListeners();
  }
  return result;
}