ServicesCommand constructor
ServicesCommand({
- required Logger logger,
- 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,
);
}