toUpper property
String
get
toUpper
Return string with all letters in upper case
Implementation
String get toUpper {
if (isEmpty) {
return this;
}
return this.toUpperCase();
}
Return string with all letters in upper case
String get toUpper {
if (isEmpty) {
return this;
}
return this.toUpperCase();
}