MeasureTextEx method
Measure string size for Font
Implementation
Vector2D MeasureTextEx(
FontD font,
String text,
num fontSize,
num spacing,
) => run(
() => _debugLabels.MeasureTextEx(font, text, fontSize, spacing),
() => _flat.MeasureTextEx(
font,
$.String$.ValueOrNull(text),
fontSize.toDouble(),
spacing.toDouble(),
),
);