TreeElement<T> constructor

TreeElement<T>(
  1. T value,
  2. TreeElement<T>? parent
)

Implementation

TreeElement(this.value, this.parent);