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