findPicture method
Implementation
GuiPicture? findPicture(String id, {bool raise = true}) {
return _findGeneric<GuiPicture>(
id,
(s) => GuiPicture(s),
raise,
expectedSapType: GuiComponentType.guiShell.value, // 122
//expectedSapSubType: "", TODO: Confirmar si tiene un subTipo específico para OfficeIntegration o si se identifica solo por ser un Shell
);
}