isUpperCase method
Check all letters is upper case
Implementation
bool isUpperCase() {
if (this == null) {
return false;
}
return this == this!.toUpperCase();
}
Check all letters is upper case
bool isUpperCase() {
if (this == null) {
return false;
}
return this == this!.toUpperCase();
}