isLowerCase static method

bool isLowerCase(
  1. String s
)

Checks if the given string s is lower case

Implementation

static bool isLowerCase(String s) {
  return s == s.toLowerCase();
}