findChart method

GuiChart? findChart(
  1. String id, {
  2. bool raise = true,
})

Implementation

GuiChart? findChart(String id, {bool raise = true}) {
  return _findGeneric<GuiChart>(
    id,
    (s) => GuiChart(s),
    raise,
    expectedSapType: GuiComponentType.guiShell.value, // 122
  );
}