toUpperSnakeCase method
Converts the string to UPPER_SNAKE_CASE. Example: 'helloWorld' -> 'HELLO_WORLD'
Implementation
String toUpperSnakeCase() => toSnakeCase().toUpperCase();
Converts the string to UPPER_SNAKE_CASE. Example: 'helloWorld' -> 'HELLO_WORLD'
String toUpperSnakeCase() => toSnakeCase().toUpperCase();