findTabStrip method

GuiTabStrip? findTabStrip(
  1. String id, {
  2. bool raise = true,
})

Implementation

GuiTabStrip? findTabStrip(String id, {bool raise = true}) {
  return _findGeneric<GuiTabStrip>(
    id,
    (s) => GuiTabStrip(s),
    raise,
    expectedSapType: GuiComponentType.guiTabStrip.value, // 90
  );
}