AddCommand constructor

AddCommand()

Implementation

AddCommand() {
  argParser
    ..addFlag('example', abbr: 'e', help: 'Include example usage where available.', defaultsTo: false)
    ..addFlag('overwrite', help: 'Overwrite existing files if present.', defaultsTo: false);
}