findContainerShell method
Implementation
GuiContainerShell? findContainerShell(String id, {bool raise = true}) {
return _findGeneric<GuiContainerShell>(
id,
(s) => GuiContainerShell(s),
raise,
expectedSapType: GuiComponentType.guiContainerShell.value, // 51
);
}