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(),
      // GenerateModelCommand(),
    ],
    ['-g'],
  ),
  HelpCommand(),
  // VersionCommand(),
  InitCommand(),
  // InstallCommand(),
  // RemoveCommand(),
  // SortCommand(),
  // UpdateCommand(),
];