accLabelCollection property

GuiComponentCollection<GuiLabel> get accLabelCollection

Implementation

GuiComponentCollection<GuiLabel> get accLabelCollection {
  final col = obj.accLabelCollection;
  if (col == null) {
    throw Exception("No labels found for this component");
  }
  return GuiComponentCollection<GuiLabel>(col);
}