getCapitalized static method
return a string resource capitalized.
Implementation
static String getCapitalized(String key,
{String? fallbackValue, Map<String, dynamic>? attributes}) {
return get(key,
fallbackValue: fallbackValue,
attributes: attributes,
transform: Transform.capitalize);
}