findCustomControl method

GuiCustomControl? findCustomControl(
  1. String id, {
  2. bool raise = true,
})

Implementation

GuiCustomControl? findCustomControl(String id, {bool raise = true}) {
  return _findGeneric<GuiCustomControl>(
    id,
    (s) => GuiCustomControl(s),
    raise,
    expectedSapType: GuiComponentType.guiCustomControl.value, // 50
  );
}