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