findDialogShell method
Implementation
GuiDialogShell? findDialogShell(String id, {bool raise = true}) {
return _findGeneric<GuiDialogShell>(
id,
(s) => GuiDialogShell(s),
raise,
expectedSapType: GuiComponentType.guiDialogShell.value, // 125
);
}