isUpperCase property
Checks whether the String is in uppercase.
Implementation
bool get isUpperCase {
if (isBlank) {
return false;
}
return this == toUpperCase();
}
Checks whether the String is in uppercase.
bool get isUpperCase {
if (isBlank) {
return false;
}
return this == toUpperCase();
}