MessageLocalization constructor

const MessageLocalization({
  1. String? zero,
  2. String? one,
  3. String? two,
  4. String? few,
  5. String? many,
  6. required String other,
})

Implementation

const MessageLocalization({
  this.zero,
  this.one,
  this.two,
  this.few,
  this.many,
  required this.other,
});