Convert to kebab-case.
String kebabCase(String text) { return _splitWords(text).map((w) => w.toLowerCase()).join('-'); }