data property
T?
get
data
The data value of T
wrapped in the ITreeNode
Implementation
T? get data => listenableData.value;
set
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;
}