findBox method

GuiBox? findBox(
  1. String id, {
  2. bool raise = true,
})

Implementation

GuiBox? findBox(String id, {bool raise = true}) {
  return _findGeneric<GuiBox>(
    id,
    (s) => GuiBox(s),
    raise,
    expectedSapType: GuiComponentType.guiBox.value, // 62
  );
}