toUpperKebabCase method

String toUpperKebabCase()

Converts the string to UPPER-KEBAB-CASE. Example: 'helloWorld' -> 'HELLO-WORLD'

Implementation

String toUpperKebabCase() => toKebabCase().toUpperCase();