httpProxyOptions top-level property

List<FigOption> httpProxyOptions
final

HTTP 代理选项

Implementation

final List<FigOption> httpProxyOptions = [
  FigOption(
    name: ['-p', '--http-proxy'],
    description: 'Use HTTP proxy for remote operations',
    exclusiveOn: ['--no-http-proxy'],
    args: [
      FigArg(
        name: 'URL',
        description: 'The URL',
        isOptional: true,
      ),
    ],
  ),
  FigOption(
    name: '--no-http-proxy',
    description: 'Do not use HTTP proxy for remote operations',
    exclusiveOn: ['--http-proxy'],
  ),
];