GenerateCommand constructor

GenerateCommand()

Constructor for the generate files command

name is a required argument that represents the name of the feature to be created

Implementation

GenerateCommand() {
  argParser.addOption(
    'name',
    abbr: 'n',
    mandatory: true,
    help: 'Name of the feature to be created.',
  );
}