toKebabCase method

String toKebabCase()

Converts the string to kebab-case.

Implementation

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