findTab method

GuiTab? findTab(
  1. String id, {
  2. bool raise = true,
})

Implementation

GuiTab? findTab(String id, {bool raise = true}) {
  return _findGeneric<GuiTab>(
    id,
    (s) => GuiTab(s),
    raise,
    expectedSapType: GuiComponentType.guiTab.value, // 91
  );
}