Convert to snake_case.
String snakeCase(String text) { return _splitWords(text).map((w) => w.toLowerCase()).join('_'); }