LanguagePackStringValuePluralized constructor

LanguagePackStringValuePluralized({
  1. String? extra,
  2. int? client_id,
  3. string? zero_value,
  4. string? one_value,
  5. string? two_value,
  6. string? few_value,
  7. string? many_value,
  8. string? other_value,
})

Implementation

LanguagePackStringValuePluralized({
  super.extra,
  super.client_id,
  this.zero_value,
  this.one_value,
  this.two_value,
  this.few_value,
  this.many_value,
  this.other_value,
});