TextFormat method

String TextFormat(
  1. String text, [
  2. List<Object?> args = const []
])

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),
);