trPluralCasesParams method
Translates the plural form of this key that matches count, like
trPluralCases, but substitutes named @placeholder parameters via
trParams and params instead of positional %s arguments.
Implementation
String trPluralCasesParams(
Map<PluralCase, String> caseKeys,
int count, [
Map<String, String> params = const {},
]) {
return _pluralKeyFor(caseKeys, count).trParams(params);
}