isLowerCase method

bool isLowerCase()

Check all letters is lower case

Implementation

bool isLowerCase() {
  if (this == null) {
    return false;
  }
  return this == this!.toLowerCase();
}