configRelationship method
void
configRelationship()
Implementation
void configRelationship() {
if (children.isNotEmpty) {
for (SelectionEntity entity in children) {
entity.parent = this;
}
for (SelectionEntity entity in children) {
entity.configRelationship();
}
}
}