findMainWindow method
Implementation
GuiMainWindow? findMainWindow(String id, {bool raise = true}) {
return _findGeneric<GuiMainWindow>(
id,
(s) => GuiMainWindow(s),
raise,
expectedSapType: GuiComponentType.guiMainWindow.value, // 21
);
}