toKebabCase method

String toKebabCase()

Converts to a lower case, dash separated string

example:

'hello World' -> 'hello-world'

Implementation

String toKebabCase() => _fixCase(ChangeCaseType.kebab);