addChildren method
Implementation
void addChildren(ElementData elementData) {
if (this.children == null) {
this.children = [];
}
this.children!.add(elementData);
}
void addChildren(ElementData elementData) {
if (this.children == null) {
this.children = [];
}
this.children!.add(elementData);
}