data property

T? data

The data value of T wrapped in the ITreeNode

Implementation

T? get data => listenableData.value;
void data=(T? value)

The setter for data value T of wrapped in the Node. It will notify listenableData whenever the value is set.

Implementation

set data(T? value) {
  listenableData.value = value;
}