addConfigOption function
void
addConfigOption(
- ArgParser argParser
Adds the config
argument argParser
Implementation
void addConfigOption(ArgParser argParser) {
argParser.addOption(
'config',
abbr: 'c',
valueHelp: 'trconfig.yaml path',
help: 'Set the trconfig.yaml path to process',
defaultsTo: 'trconfig.yaml',
);
}