commands top-level property

List<Command> commands
final

Implementation

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