DeepNavigationNode<T> constructor

const DeepNavigationNode<T>(
  1. T value, {
  2. int level = 0,
  3. DeepNavigationNode<T>? child,
})

Implementation

const DeepNavigationNode(this.value, {this.level = 0, this.child});