isLowercase static method

bool isLowercase(
  1. String value
)

Implementation

static bool isLowercase(String value) {
  if (value == null) return false;
  return value.compareTo(value.toLowerCase()) == 0;
}