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