findButton method

GuiButton? findButton(
  1. String id, {
  2. bool raise = true,
})

Implementation

GuiButton? findButton(String id, {bool raise = true}) {
  return _findGeneric<GuiButton>(
    id,
    (s) => GuiButton(s),
    raise,
    expectedSapType: GuiComponentType.guiButton.value, // 40
  );
}