findDockShell method
Implementation
GuiDockShell? findDockShell(String id, {bool raise = true}) {
return _findGeneric<GuiDockShell>(
id,
(s) => GuiDockShell(s),
raise,
expectedSapType: GuiComponentType.guiDockShell.value, // 126
);
}