findOfficeIntegration method

GuiOfficeIntegration? findOfficeIntegration(
  1. String id, {
  2. bool raise = true,
})

Implementation

GuiOfficeIntegration? findOfficeIntegration(String id, {bool raise = true}) {
  return _findGeneric<GuiOfficeIntegration>(
    id,
    (s) => GuiOfficeIntegration(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
  );
}