findScrollBar method
Implementation
GuiScrollbar? findScrollBar(String id, {bool raise = true}) {
return _findGenericNoGuiComponent<GuiScrollbar>(
id,
(s) => GuiScrollbar(s),
raise,
expectedSapType: GuiComponentType.guiScrollbar.value, // 100
);
}