kebabize function

String kebabize(
  1. String str
)

Implementation

String kebabize(String str) {
  return kebabizeCamelCase(str);
}