getChild method
Get a Child Node
Implementation
Node? getChild(String name) {
if (children.containsKey(name)) {
return children[name];
}
if (profile != null && profile!.children.containsKey(name)) {
return profile?.children[name];
}
return null;
}