slug constant
Pattern
const slug
Slug (URL-friendly string) Regex Examples: hello-world, flutter-tutorial, my-blog-post
Implementation
static const Pattern slug = r'^[a-z0-9]+(?:-[a-z0-9]+)*$';
Slug (URL-friendly string) Regex Examples: hello-world, flutter-tutorial, my-blog-post
static const Pattern slug = r'^[a-z0-9]+(?:-[a-z0-9]+)*$';