TextFormat method
Text formatting with variables (sprintf() style)
NOT calling original Raylib function.
Implementation
String TextFormat(
String text, [
List<Object?> args = const [],
]
) => run(
() => _debugLabels.TextFormat(text, args),
() => rl.Utils.Format(text, args),
);