slugify static method
Create a URL-friendly slug from any string
Implementation
static String slugify(String text) {
return text
.toLowerCase()
.replaceAll(
RegExp(r'[^a-z0-9]+'), '-') // Replace non-alphanumerics with '-'
.replaceAll(RegExp(r'(^-|-$)'), ''); // Trim leading/trailing '-'
}