SourceCommand constructor

SourceCommand()

Implementation

SourceCommand() {
  super.argParser.addFlag(
        'absolute',
        abbr: 'a',
        help: 'determine whether to show absolute paths or not',
        negatable: false,
      );

  super.argParser.addFlag(
        'check',
        help: 'determine whether to check if the config file exists and is valid or not',
        defaultsTo: true,
      );
}