toUpperCase method

String? toUpperCase()

Implementation

String? toUpperCase() {
  return value?.toUpperCase();
}