toKebabCase property

String get toKebabCase

Converts the string to kebab-case.

Example:

print('helloWorld'.toKebabCase); // hello-world

Implementation

String get toKebabCase => toSnakeCase.replaceAll('_', '-');