findDockShell method

GuiDockShell? findDockShell(
  1. String id, {
  2. bool raise = true,
})

Implementation

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