findRadioButton method
Implementation
GuiRadioButton? findRadioButton(String id, {bool raise = true}) {
return _findGeneric<GuiRadioButton>(
id,
(s) => GuiRadioButton(s),
raise,
expectedSapType: GuiComponentType.guiRadioButton.value, // 41
);
}