RadixTreeNode<T> constructor

RadixTreeNode<T>(
  1. String prefix, [
  2. T? value
])

Constructs a node from the given prefix and optional value.

Implementation

RadixTreeNode(this.prefix, [this.value]) : childrend = <RadixTreeNode<T>>{};