InitOptions constructor

const InitOptions({
  1. bool all = false,
  2. bool minimal = false,
  3. List<String> modules = const [],
  4. bool yes = false,
  5. bool runPubGet = true,
  6. bool force = false,
  7. bool list = false,
  8. bool help = false,
  9. List<String> unknownFlags = const [],
})

Implementation

const InitOptions({
  this.all = false,
  this.minimal = false,
  this.modules = const [],
  this.yes = false,
  this.runPubGet = true,
  this.force = false,
  this.list = false,
  this.help = false,
  this.unknownFlags = const [],
});