toKebabCase property

String toKebabCase

Converts string to kebab case. Example: "helloWorld" -> "hello-world"

Implementation

String get toKebabCase => kebabCase(this);