upper static method

String upper(
  1. String value
)

Uppercases value.

Implementation

static String upper(String value) => value.toUpperCase();