findNetChart method

GuiNetChart? findNetChart(
  1. String id, {
  2. bool raise = true,
})

Implementation

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