GuiToggle method
Implementation
(int result, bool active) GuiToggle(
RectangleD bounds,
String? text,
bool active,
) => run(
() => 'GuiToggle($bounds, $text, $active)',
() {
final valuePtr = refBool1(active);
final result = rl.Gui.GuiToggle(
_refRectangle1(bounds).ref,
refStr(text),
valuePtr,
);
return (result, valuePtr.value);
},
);