findSapChart method

GuiSapChart? findSapChart(
  1. String id, {
  2. bool raise = true,
})

Implementation

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