InfoCommand constructor

InfoCommand()

Implementation

InfoCommand()
    : super(
        'info',
        'Print the facts about the project.\n\n'
            'Package and version, path to the alex config, packages of a '
            'multi-package project, Flutter version pinned with FVM, '
            'locales and localization paths, git branches.\n\n'
            'Everything is taken from the alex config and the project '
            'files, so a script or an AI agent can get all of it with a '
            'single call instead of reading several files.',
        ['facts'],
      ) {
  argParser.addFormatOption();
}