children property
GuiComponentCollection<GuiComponent>
get
children
Implementation
GuiComponentCollection get children {
final childrenObj = obj.children;
if (childrenObj == null) {
throw Exception("No children found for this container");
}
return GuiComponentCollection<GuiComponent>(childrenObj);
}