toUpperSnakeCase method

String toUpperSnakeCase()

Converts the string to UPPER_SNAKE_CASE. Example: 'helloWorld' -> 'HELLO_WORLD'

Implementation

String toUpperSnakeCase() => toSnakeCase().toUpperCase();