toLowerKebabCase method

String toLowerKebabCase()

Converts the string to lower-kebab-case (alias for toKebabCase). Example: 'HelloWorld' -> 'hello-world'

Implementation

String toLowerKebabCase() => toKebabCase();