findTitlebar method
Implementation
GuiTitlebar? findTitlebar(String id, {bool raise = true}) {
return _findGeneric<GuiTitlebar>(
id,
(s) => GuiTitlebar(s),
raise,
expectedSapType: GuiComponentType.guiTitlebar.value, // 102
);
}
GuiTitlebar? findTitlebar(String id, {bool raise = true}) {
return _findGeneric<GuiTitlebar>(
id,
(s) => GuiTitlebar(s),
raise,
expectedSapType: GuiComponentType.guiTitlebar.value, // 102
);
}