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