updateNode method

void updateNode(
  1. int id,
  2. VoltronMap props
)

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);
      }
    }
  }
}