updateNode method
Implementation
void updateNode(int id, VoltronMap props) {
VirtualNode? node = _virtualNodes[id];
if (node != null) {
updateProps(node, props, true);
if (node._parent == null) {
if (!_updateNodeIdList.contains(id)) {
_updateNodeIdList.add(id);
}
}
}
}