constantCase method

String constantCase(
  1. String input
)

Convert a string to CONSTANT_CASE Example: "myComponent" -> "MY_COMPONENT"

Implementation

String constantCase(String input) => ReCase(input).constantCase;