updateExtra method

void updateExtra(
  1. int instanceId,
  2. int id,
  3. Object object
)

Implementation

void updateExtra(int instanceId, int id, Object object) {
  LogUtils.dRender("ID:$id, updateExtra");
  var uiNode = controllerManager.findNode(instanceId, id);
  if (uiNode != null) {
    uiNode.updateExtra(object);

    addUpdateNodeIfNeeded(uiNode);
  }
}