MeasureTextEx method
Implementation
Vector2D MeasureTextEx(
FontD font,
String text,
num fontSize,
num spacing,
) => run(
() => 'MeasureTextEx($font, $text, $fontSize, $spacing)',
() => rl.Core.MeasureTextEx(
_refFont1(font).ref,
refStr(text),
fontSize.toDouble(),
spacing.toDouble(),
).toD(),
);