AddCommand constructor
AddCommand()
Implementation
AddCommand()
: super(
name: 'add',
description:
'Generates a new command inside the current Cardinal project.',
arguments: [
stringArgument(
name: 'name',
help: 'The name of the command to generate',
required: true,
),
],
);