trPluralCasesParams method

String trPluralCasesParams(
  1. Map<PluralCase, String> caseKeys,
  2. int count, [
  3. Map<String, String> params = const {}
])

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);
}