children property

Implementation

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