ServicesCommand constructor

ServicesCommand({
  1. required Logger logger,
  2. required FileSystem fs,
})

Implementation

ServicesCommand({required this.logger, required this.fs}) {
  argParser
    ..addOption(
      'root',
      help: 'Directory to search from. Defaults to the working directory.',
      valueHelp: 'path',
    )
    ..addFlag(
      'paths',
      help: 'Print only paths, one per line, for scripting',
      negatable: false,
    );
}