findFrameWindow method
Implementation
GuiFrameWindow? findFrameWindow(String id, {bool raise = true}) {
return _findGeneric<GuiFrameWindow>(
id,
(s) => GuiFrameWindow(s),
raise,
expectedSapType: GuiComponentType.guiFrameWindow.value, // 20
);
}