toKebabCase method

String toKebabCase()

Converts the string to kebab-case.

Implementation

String toKebabCase() => this.extractLowercaseComponents().join('-');