toUpper property
String
get
toUpper
toUpper: converts all characters to uppercase
Implementation
String get toUpper {
return this?.toUpperCase() ?? "";
}
toUpper: converts all characters to uppercase
String get toUpper {
return this?.toUpperCase() ?? "";
}