undo method

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

Implementation

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