GuiLine method

GuiResult GuiLine(
  1. RectangleD bounds,
  2. String? text
)

Line separator control, could contain text

Implementation

GuiResult GuiLine(
  RectangleD bounds,
  String? text,
) => run(
  () => _debugLabels.GuiLine(bounds, text),
  () => .fromValue(_flat.GuiLine(
    bounds,
    $.String$.ValueOrNull(text),
  )),
);