Options constructor

const Options({
  1. Level logLevel = log.Level.INFO,
  2. bool colorfulLog = true,
  3. bool showHelp = false,
  4. bool showVersion = false,
  5. bool showTasks = false,
  6. bool showTaskGraph = false,
  7. bool forceTasks = false,
  8. bool parallelizeTasks = true,
  9. bool resetCache = false,
  10. bool logBuildTime = true,
  11. bool runPubGet = true,
  12. bool disableCache = false,
  13. List<String> tasksInvocation = const [],
})

Implementation

const Options({
  this.logLevel = log.Level.INFO,
  this.colorfulLog = true,
  this.showHelp = false,
  this.showVersion = false,
  this.showTasks = false,
  this.showTaskGraph = false,
  this.forceTasks = false,
  this.parallelizeTasks = true,
  this.resetCache = false,
  this.logBuildTime = true,
  this.runPubGet = true,
  this.disableCache = false,
  this.tasksInvocation = const [],
});