toUpperKebabCase method
Converts the string to UPPER-KEBAB-CASE. Example: 'helloWorld' -> 'HELLO-WORLD'
Implementation
String toUpperKebabCase() => toKebabCase().toUpperCase();
Converts the string to UPPER-KEBAB-CASE. Example: 'helloWorld' -> 'HELLO-WORLD'
String toUpperKebabCase() => toKebabCase().toUpperCase();