findContainerShell method

GuiContainerShell? findContainerShell(
  1. String id, {
  2. bool raise = true,
})

Implementation

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