setDirty method

void setDirty()

Implementation

void setDirty() {
  dirty = true;
  var cmd = _subCommand;
  while (cmd != null) {
    cmd.dirty = true;
    cmd = cmd.input;
  }
}