toLowerKebabCase method
Converts the string to lower-kebab-case (alias for toKebabCase). Example: 'HelloWorld' -> 'hello-world'
Implementation
String toLowerKebabCase() => toKebabCase();
Converts the string to lower-kebab-case (alias for toKebabCase). Example: 'HelloWorld' -> 'hello-world'
String toLowerKebabCase() => toKebabCase();