DrawText method
Implementation
@override
void DrawText(
String text,
num posX,
num posY,
num fontSize,
ColorD color,
) => run(
() => RaylibDebugLabels.DrawText(text, posX, posY, fontSize, color),
() => rl.Core.DrawText(
rl.Temp.String$.ValueOrNull(text),
posX.toInt(),
posY.toInt(),
fontSize.toInt(),
rl.Temp.Color$.Ref1(color).ref,
),
);