findIfNodeIsChildInTree method
Implementation
bool findIfNodeIsChildInTree(
final CNode? proposedParent,
final CNode proposedChild,
) {
final children = _instance.findAllChildren(proposedParent);
if (children.contains(proposedChild)) {
return true;
}
return false;
}