LanguagePackStringValuePluralized constructor

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

Implementation

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