toUpper property

String get toUpper

Return string with all letters in upper case

Implementation

String get toUpper {
  if (isEmpty) {
    return this;
  }
  return this.toUpperCase();
}