GetCompletionsCacheCommand constructor

GetCompletionsCacheCommand({
  1. String name = 'getcompletions',
})

Implementation

GetCompletionsCacheCommand({super.name = 'getcompletions'})
    : super(
        description: 'Fetches all package names for autocompletion',
        configureArg: (arg) {
          arg
            ..addOption('output',
                abbr: 'o',
                help: 'Output folder to write cache files',
                mandatory: true);
        },
      );