isLowerCase property

bool isLowerCase

Checks whether the String is in lowercase.

Implementation

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