findHTMLViewer method
Implementation
GuiHTMLViewer? findHTMLViewer(String id, {bool raise = true}) {
return _findGeneric<GuiHTMLViewer>(
id,
(s) => GuiHTMLViewer(s),
raise,
expectedSapType: GuiComponentType.guiShell.value, // 122
expectedSapSubType: "HTMLViewer",
);
}