PubGetCommand constructor

PubGetCommand({
  1. required PubspecLock pubspecLock,
  2. required PubspecYaml pubspecYaml,
  3. required FileSystem fs,
  4. required Logger logger,
  5. required Bindings bindings,
  6. required FindFile findFile,
})

Implementation

PubGetCommand({
  required super.pubspecLock,
  required super.pubspecYaml,
  required super.fs,
  required super.logger,
  required super.bindings,
  required super.findFile,
}) {
  argParser
    ..addFlag(
      'offline',
      help: 'Use cached packages instead of accessing the network.',
    )
    ..addFlag(
      'dry-run',
      abbr: 'n',
      negatable: false,
      help: "Report what dependencies would change but don't change any.",
    )
    ..addFlag(
      'enforce-lockfile',
      negatable: false,
      help: 'Enforce pubspec.lock. Fail resolution if '
          'pubspec.lock does not satisfy pubspec.yaml',
    )
    ..addFlag(
      'precompile',
      help: 'Build executables in immediate dependencies.',
    );
}