BuildDependenciesCommand constructor
BuildDependenciesCommand()
Implementation
BuildDependenciesCommand() {
argParser
..addOption(
'directory',
abbr: 'd',
help: 'source directory',
)
..addOption(
'output',
abbr: 'o',
help: 'output directory path',
)
..addOption(
'format',
abbr: 'f',
help: 'output file format',
allowed: _kFormatList,
defaultsTo: _kUmlFormat,
);
}