TextRemoveSpaces method

String TextRemoveSpaces(
  1. String text
)

Remove text spaces, concat words

NOT calling original Raylib function.

Implementation

String TextRemoveSpaces(
  String text,
) => run(
  () => _debugLabels.TextRemoveSpaces(text),
  () => text.replaceAll(' ', ''),
);