DrawTextPro method
void
DrawTextPro()
Implementation
void DrawTextPro(
FontD font,
String text,
Vector2D position,
Vector2D origin,
num rotation,
num fontSize,
num spacing,
ColorD tint,
) => run(
() => 'DrawTextPro($font, $text, $position, $origin, $rotation, $fontSize, $spacing, $tint)',
() => rl.Core.DrawTextPro(
_refFont1(font).ref,
refStr(text),
_refVector21(position).ref,
_refVector22(origin).ref,
rotation.toDouble(),
fontSize.toDouble(),
spacing.toDouble(),
_refColor1(tint).ref,
),
);