commands top-level property
Implementation
final List<Command> commands = [
CommandParent(
'create',
[
CreateControllerCommand(),
CreatePageCommand(),
CreateProjectCommand(),
CreateProviderCommand(),
CreateScreenCommand(),
CreateViewCommand()
],
['-c'],
),
CommandParent(
'generate',
[
GenerateLocalesCommand(),
GenerateModelCommand(),
],
['-g'],
),
HelpCommand(),
VersionCommand(),
InitCommand(),
InstallCommand(),
RemoveCommand(),
SortCommand(),
UpdateCommand(),
];