ScanOptions constructor

const ScanOptions({
  1. bool includeDev = false,
  2. bool fresh = false,
  3. bool offline = false,
  4. bool verbose = false,
  5. int concurrency = 8,
})

Creates a ScanOptions with sensible defaults.

Implementation

const ScanOptions({
  this.includeDev = false,
  this.fresh = false,
  this.offline = false,
  this.verbose = false,
  this.concurrency = 8,
});