toParamCase method
Same as toKebabCase
Converts to a lower case, dash separated string
example:
'hello World' -> 'hello-world'
Implementation
String toParamCase() => _fixCase(ChangeCaseType.kebab);
Same as toKebabCase
Converts to a lower case, dash separated string
example:
'hello World' -> 'hello-world'
String toParamCase() => _fixCase(ChangeCaseType.kebab);