isUpperCase property

bool isUpperCase

Checks whether the String is in uppercase.

Implementation

bool get isUpperCase {
  if (this.isBlank) {
    return false;
  }
  return this == this.toGreekUpperCase();
}