beforeCommandExecute method

void beforeCommandExecute(
  1. SmartArgCommand command
)

Invoked before a SmartArgCommand is executed

Implementation

void beforeCommandExecute(SmartArgCommand command) {
  if (this is SmartArgCommand) {
    parent?.beforeCommandExecute(this as SmartArgCommand);
  }
}