getUpper static method
return a string resource in upper case.
Implementation
static String getUpper(String key,
    {String? fallbackValue, Map<String, dynamic>? attributes}) {
  return get(key,
      fallbackValue: fallbackValue,
      attributes: attributes,
      transform: TextTransform.upper);
}