toScreamingSnakeCase property
String
get
toScreamingSnakeCase
Converts the string to SCREAMING_SNAKE_CASE (MACRO_CASE, CONSTANT_CASE, ALL_CAPS). Example: "helloWorld" => "HELLO_WORLD"
Implementation
String get toScreamingSnakeCase => toWords.join('_').toUpperCase();