toKebabCase method

String toKebabCase()

Converts the string to kebab-case.

Implementation

String toKebabCase() => _extractLowercaseComponents().join('-');