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