toUpperCase static method

String toUpperCase(
  1. dynamic value
)

Implementation

static String toUpperCase(dynamic value) {
  return value == null ? '' : value.toString().trim().toUpperCase();
}