updateNode method
Re-sends every property of a node already in the scene.
Implementation
Future<void> updateNode(UArNode node) async {
value = value.copyWith(nodes: <String, UArNode>{...value.nodes, node.id: node});
await _invoke<void>("updateNode", <String, Object?>{"node": node.toMap()});
}