DartBomOptions constructor

const DartBomOptions({
  1. String? source,
  2. String target = './pubspec.yaml',
  3. bool useOverrideFile = true,
  4. bool writeFiles = false,
  5. bool backupFiles = true,
  6. bool overwritePathDependencies = false,
  7. bool overwriteDependencyOverrides = true,
})

Implementation

const DartBomOptions(
    {String? source,
    this.target = './pubspec.yaml',
    this.useOverrideFile = true,
    this.writeFiles = false,
    this.backupFiles = true,
    this.overwritePathDependencies = false,
    this.overwriteDependencyOverrides = true})
    : _source = source;