Returns a constant cased version of the input String.
static String constantCase(String text, {String separator = ''}) { return _constantCase(groupIntoWords(text), separator: separator); }