toCapitalizedKebabCase method

String toCapitalizedKebabCase()

Converts the string to Capitalized-Kebab-Case.

Implementation

String toCapitalizedKebabCase() =>
    _extractLowercaseComponents().map((e) => e.capitalize()).join('-');