isUpperCase property
bool
get
isUpperCase
Returns true if the string is all uppercase.
Implementation
bool get isUpperCase =>
this == this.toUpperCase() && this != this.toLowerCase();
Returns true if the string is all uppercase.
bool get isUpperCase =>
this == this.toUpperCase() && this != this.toLowerCase();