toUpperSnakeCase method

String toUpperSnakeCase()

Converts the string to UPPER_SNAKE_CASE;

Implementation

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