LocalPlanTrackerClient constructor

LocalPlanTrackerClient({
  1. String planPath = '.spectra/PLAN.md',
  2. String roadmapPath = '.spectra/ROADMAP.md',
  3. List<String> activeStates = const <String>['Todo', 'In Progress'],
  4. List<String> terminalStates = const <String>['Done'],
})

Creates a local plan tracker.

Implementation

LocalPlanTrackerClient({
  this.planPath = '.spectra/PLAN.md',
  this.roadmapPath = '.spectra/ROADMAP.md',
  this.activeStates = const <String>['Todo', 'In Progress'],
  this.terminalStates = const <String>['Done'],
});