findToolbarControl method
Implementation
GuiToolbarControl? findToolbarControl(String id, {bool raise = true}) {
return _findGeneric<GuiToolbarControl>(
id,
(s) => GuiToolbarControl(s),
raise,
expectedSapType: GuiComponentType.guiShell.value, // 122
);
}