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