isLowerCase property

bool get isLowerCase

Checks whether the String is in lowercase.

Implementation

bool get isLowerCase {
  if (isBlank) {
    return false;
  }
  return this == toLowerCase();
}