LanguagePackStringValuePluralized constructor

const LanguagePackStringValuePluralized({
  1. required String zeroValue,
  2. required String oneValue,
  3. required String twoValue,
  4. required String fewValue,
  5. required String manyValue,
  6. required String otherValue,
  7. dynamic extra,
  8. int? clientId,
})

A language pack string which has different forms based on the number of some object it mentions. See https://www.unicode.org/cldr/charts/latest/supplemental/language_plural_rules.html for more information

Implementation

const LanguagePackStringValuePluralized({
  required this.zeroValue,
  required this.oneValue,
  required this.twoValue,
  required this.fewValue,
  required this.manyValue,
  required this.otherValue,
  this.extra,
  this.clientId,
});