findGridView method

GuiGridView? findGridView(
  1. String id, {
  2. bool raise = true,
})

Implementation

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