DrawText method
Implementation
void DrawText(
String text,
num posX,
num posY,
num fontSize,
ColorD color,
) => run(
() => 'DrawText($text, $posX, $posY, $fontSize, $color)',
() => rl.Core.DrawText(
refStr(text),
posX.toInt(),
posY.toInt(),
fontSize.toInt(),
_refColor1(color).ref,
),
);