WizardConfig constructor

WizardConfig({
  1. required String targetPath,
  2. required String mode,
  3. required bool useAi,
  4. bool dryRun = false,
  5. bool cleanImports = true,
  6. bool generateReport = true,
  7. bool visualize = false,
})

Creates a WizardConfig.

Implementation

WizardConfig({
  required this.targetPath,
  required this.mode,
  required this.useAi,
  this.dryRun = false,
  this.cleanImports = true,
  this.generateReport = true,
  this.visualize = false,
});