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