findCalendar method

GuiCalendar? findCalendar(
  1. String id, {
  2. bool raise = true,
})

Implementation

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