Generate a slug from text.
String slug({int words = 3}) { return List.generate( words, (_) => _randomElement(_lorem), ).join('-').toLowerCase(); }