TextToSnake method

String TextToSnake(
  1. String text
)

Get Snake case notation version of provided string

Implementation

String TextToSnake(
  String text,
) => run(
  () => _debugLabels.TextToSnake(text),
  () => rl.Utils.TextSplitWords(text).map((w) => w.toLowerCase()).join('_'),
);