Convert a string to CONSTANT_CASE Example: "myComponent" -> "MY_COMPONENT"
String constantCase(String input) => ReCase(input).constantCase;