findDialogShell method

GuiDialogShell? findDialogShell(
  1. String id, {
  2. bool raise = true,
})

Implementation

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