setParent method
Sets the parent content item for the given list of children.
Implementation
@protected
void setParent(Iterable<ContentItem?> children) {
for (final child in children) {
child?.parent = this;
}
}
Sets the parent content item for the given list of children.
@protected
void setParent(Iterable<ContentItem?> children) {
for (final child in children) {
child?.parent = this;
}
}