findLabel method

GuiLabel? findLabel(
  1. String id, {
  2. bool raise = true,
})

Implementation

GuiLabel? findLabel(String id, {bool raise = true}) {
  return _findGeneric<GuiLabel>(
    id,
    (s) => GuiLabel(s),
    raise,
    expectedSapType: GuiComponentType.guiLabel.value, // 30
  );
}