FCleanCommand constructor
FCleanCommand(
- CommandContext context
Implementation
FCleanCommand(this.context) {
argParser
..addFlag(
'verbose',
abbr: 'v',
help: 'Show debug logging.',
negatable: false,
)
..addFlag(
'json',
help: 'Reserved for future machine-readable output.',
negatable: false,
hide: true,
);
}