findComboBox method

GuiComboBox? findComboBox(
  1. String id, {
  2. bool raise = true,
})

Implementation

GuiComboBox? findComboBox(String id, {bool raise = true}) {
  return _findGeneric<GuiComboBox>(
    id,
    (s) => GuiComboBox(s),
    raise,
    expectedSapType: GuiComponentType.guiComboBox.value, // 34
  );
}