DepsCommand constructor

DepsCommand({
  1. List<DartPackage> exclude = const [],
  2. List<String> excludeGlob = const [],
})

Implementation

DepsCommand({
  this.exclude = const [],
  this.excludeGlob = const [],
}) {
  argParser.addOption(
    'package',
    abbr: 'p',
  );
}