cIsAllCap property
bool
get
cIsAllCap
Checks if the string is in all uppercase.
Implementation
bool get cIsAllCap {
return this == (this).toUpperCase();
}
Checks if the string is in all uppercase.
bool get cIsAllCap {
return this == (this).toUpperCase();
}