toUpperKebabCase method

String toUpperKebabCase()

Converts the string to lower-kebab-case.

Implementation

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