isUpperCase method

bool isUpperCase()

Check all letters is upper case

Implementation

bool isUpperCase() {
  if (this == null) {
    return false;
  }
  return this == this!.toUpperCase();
}