allCommands top-level property

List<TcCommand> allCommands
getter/setter pair

All commands that can be given with Taycan are here

Implementation

List<TcCommand> allCommands = [
  TcCommand(
    name: 'page',
    options: 1,
    category: 'make',
    arguments: ['-h', '-f', '-c', '-b'],
    action: _makePage,
  ),
];