CommandInfo constructor

CommandInfo(
  1. String cliTitle,
  2. ConsolePrinter consolePrinter
)

Implementation

CommandInfo(super.cliTitle, super.consolePrinter)
    : super(allowIgnoreOptions: false) {
  argParser.addOption(
    'template',
    abbr: 't',
    help: 'Template to use.',
    valueHelp:
        './template_dir|template.yaml|template.json|template.zip|template.tar.gz',
  );
}