trPlural method

String trPlural([
  1. String? pluralKey,
  2. int? i,
  3. List<String> args = const []
])

Implementation

String trPlural([String? pluralKey, int? i, List<String> args = const []]) {
  return i == 1 ? trArgs(args) : pluralKey!.trArgs(args);
}