getUpper static method

String getUpper(
  1. String key, {
  2. String? fallbackValue,
  3. Map<String, dynamic>? attributes,
})

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: Transform.upper);
}