TranslationValue constructor

const TranslationValue({
  1. required String value,
  2. String? plural,
  3. String? none,
})

Implementation

const TranslationValue({
  required this.value,
  this.plural,
  this.none,
});