GuiButton method

int GuiButton(
  1. RectangleD bounds,
  2. String? text
)

Implementation

int GuiButton(
  RectangleD bounds,
  String? text,
) => run(
  () => 'GuiButton($bounds, $text)',
  () => rl.Gui.GuiButton(
    _refRectangle1(bounds).ref,
    refStr(text),
  ),
);