isUpperCase static method

bool isUpperCase(
  1. String value
)

Checks if the string is in uppercase.

Implementation

static bool isUpperCase(String value) => value == value.toUpperCase();