Frame constructor

Frame({
  1. required TokenSet node,
  2. int editsRemaining = 0,
  3. String str = '',
  4. String prefix = '',
  5. TokenSet? qNode,
  6. TokenSet? output,
  7. TokenSet? child,
})

Implementation

Frame({
  required this.node,
  this.editsRemaining = 0,
  this.str = '',
  this.prefix = '',
  this.qNode,
  this.output,
  this.child,
});