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