getLower static method
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);
}