toUpper property

String get toUpper

toUpper: converts all characters to uppercase

Implementation

String get toUpper {
  return this?.toUpperCase() ?? "";
}