setupArgParser method

  1. @override
void setupArgParser()
override

Sets up the argument parser with command-specific options

Implementation

@override
void setupArgParser() {
  super.setupArgParser();
  argParser.addOption(
    'feature',
    abbr: 'f',
    help:
        'The feature to add the content item to. If not specified, the item will be created without a feature context.',
  );
}