getLower static method

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

return a string resource in lower case.

Implementation

static String getLower(String key,
    {String? fallbackValue, Map<String, dynamic>? attributes}) {
  return get(key,
      fallbackValue: fallbackValue,
      attributes: attributes,
      transform: Transform.lower);
}