connections property
GuiComponentCollection<GuiConnection>
get
connections
Implementation
GuiComponentCollection<GuiConnection> get connections {
final childrenObj = obj.children;
if (childrenObj == null) throw Exception("Connections not found");
return GuiComponentCollection<GuiConnection>(childrenObj);
}