selectedNode property
Get the current selected node. Returns null if there is no selectedKey
Implementation
Node<T>? get selectedNode {
return this.selectedKey!.isEmpty ? null : getNode(this.selectedKey!);
}
Get the current selected node. Returns null if there is no selectedKey
Node<T>? get selectedNode {
return this.selectedKey!.isEmpty ? null : getNode(this.selectedKey!);
}