LangPackStringPluralized constructor

const LangPackStringPluralized({
  1. required String key,
  2. String? zeroValue,
  3. String? oneValue,
  4. String? twoValue,
  5. String? fewValue,
  6. String? manyValue,
  7. required String otherValue,
})

Lang Pack String Pluralized constructor.

Implementation

const LangPackStringPluralized({
  required this.key,
  this.zeroValue,
  this.oneValue,
  this.twoValue,
  this.fewValue,
  this.manyValue,
  required this.otherValue,
}) : super._();