configRelationship method

void configRelationship()

Implementation

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