DependenciesOptions constructor

DependenciesOptions({
  1. required String path,
  2. bool reverse = false,
  3. bool outputConsole = true,
  4. String? outputTextFile = '',
  5. String? outputJsonFile = '',
  6. String? outputYamlFile = '',
  7. String sortMode = 'dependencies',
  8. String status = 'valid',
})

Creates a new DependenciesOptions instance with the provided settings.

Implementation

DependenciesOptions({
  required this.path,
  this.reverse = false,
  this.outputConsole = true,
  this.outputTextFile = '',
  this.outputJsonFile = '',
  this.outputYamlFile = '',
  this.sortMode = 'dependencies',
  this.status = 'valid',
});