DebugGrammar constructor

DebugGrammar({
  1. bool showAll = false,
  2. bool showPath = false,
  3. Duration delay = Duration.zero,
  4. Pattern? main,
  5. Pattern? remove,
  6. Map<String, Pattern>? rules,
})

Implementation

DebugGrammar({
  this.showAll = false,
  this.showPath = false,
  this.delay = Duration.zero,
  super.main,
  super.remove,
  super.rules,
});