LinkCommand constructor

LinkCommand()

Implementation

LinkCommand() {
  argParser
    ..addFlag(
      'yes',
      abbr: 'y',
      negatable: false,
      help: 'Skip confirmation prompts (useful for CI).',
    )
    ..addFlag(
      'no-ui',
      negatable: false,
      help: 'Plain-text headless output (no ANSI). Auto-enabled when stdout is not a TTY. Implies --yes.',
    );
}