DrawRectangle method
Implementation
@override
void DrawRectangle(
num posX,
num posY,
num width,
num height,
ColorD color,
) => run(
() => RaylibDebugLabels.DrawRectangle(posX, posY, width, height, color),
() => rl.Core.DrawRectangle(
posX.toInt(),
posY.toInt(),
width.toInt(),
height.toInt(),
rl.Temp.Color$.Ref1(color).ref,
),
);