maybeGetByIdentifier method
Get a node registered in this controller by its identifier. Returns null if no corresponding node is found.
Implementation
TreeNode? maybeGetByIdentifier(Object identifier) {
final node = _nodeMap[identifier];
return node;
}