addNodeAndSelect method
Implementation
String addNodeAndSelect(Node node) {
final newId = addNode(node);
selection.selectItems([newId], additive: false);
return newId;
}
String addNodeAndSelect(Node node) {
final newId = addNode(node);
selection.selectItems([newId], additive: false);
return newId;
}