toUpperSnakeCase method

String toUpperSnakeCase()

Converts the string to UPPER_SNAKE_CASE;

Implementation

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