getComponent method
Implementation
WidgetNodeSpec? getComponent(String id) {
if (components.containsKey(id)) {
return components[id]?.clone();
}
return null;
}
WidgetNodeSpec? getComponent(String id) {
if (components.containsKey(id)) {
return components[id]?.clone();
}
return null;
}