PrefixNode constructor

PrefixNode({
  1. bool? dataSourceNode,
  2. int? depth,
  3. int? endIndex,
  4. int? startIndex,
  5. String? word,
})

Implementation

PrefixNode({
  this.dataSourceNode,
  this.depth,
  this.endIndex,
  this.startIndex,
  this.word,
});