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