TextLength method

int TextLength(
  1. String text
)

Get text length

NOT calling original Raylib function.

Implementation

int TextLength(
  String text,
) => run(
  () => _debugLabels.TextLength(text),
  () => text.length,
);