findPicture method

GuiPicture? findPicture(
  1. String id, {
  2. bool raise = true,
})

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
  );
}