findBarChart method

GuiBarChart? findBarChart(
  1. String id, {
  2. bool raise = true,
})

Implementation

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