connections property

Implementation

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