toParamCase method

String toParamCase()

Same as toKebabCase

Converts to a lower case, dash separated string

example:

'hello World' -> 'hello-world'

Implementation

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