ShowCustomCommand constructor

ShowCustomCommand()

Implementation

ShowCustomCommand()
    : super('show', 'Show details of a custom command.') {
  argParser.addOption(
    'name',
    abbr: 'n',
    help: 'Name of the command to show',
    mandatory: true,
  );
}