execute method

void execute(
  1. EditorCommand command
)

Implementation

void execute(EditorCommand command) {
  command.execute(this);
  _undoStack.add(command);
  _redoStack.clear();
  notifyListeners();
}