PluralForm constructor

PluralForm({
  1. required String one,
  2. required String other,
  3. required int value,
  4. String? zero,
  5. String? two,
  6. String? few,
  7. String? many,
  8. String? locale,
})

Implementation

PluralForm({
  required this.one,
  required this.other,
  required this.value,
  this.zero,
  this.two,
  this.few,
  this.many,
  this.locale,
});