BootstrapConfig constructor

const BootstrapConfig({
  1. bool debugMode = false,
  2. Set<String> skipSteps = const {},
  3. bool skipUpdateCheck = false,
  4. bool skipTelemetry = false,
  5. bool skipPlugins = false,
  6. bool skipMcpServers = false,
  7. bool skipDoctor = false,
  8. Duration stepTimeout = const Duration(seconds: 30),
  9. String? configDir,
  10. String? projectDir,
})

Implementation

const BootstrapConfig({
  this.debugMode = false,
  this.skipSteps = const {},
  this.skipUpdateCheck = false,
  this.skipTelemetry = false,
  this.skipPlugins = false,
  this.skipMcpServers = false,
  this.skipDoctor = false,
  this.stepTimeout = const Duration(seconds: 30),
  this.configDir,
  this.projectDir,
});