selectedNode property

Node<T>? get selectedNode

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!);
}