Get Snake case notation version of provided string
String TextToSnake( String text, ) => run( () => _debugLabels.TextToSnake(text), () => rl.Utils.TextSplitWords(text).map((w) => w.toLowerCase()).join('_'), );