Expands node.
node
If the ancestors of node are collapsed, it will expand them too.
@override void expandNode(TreeNode node) { onAboutToExpand?.call(node); super.expandNode(node); notifyListeners(); }