EnumerationValue constructor

EnumerationValue({
  1. required String value,
  2. List<String>? synonyms,
})

Implementation

EnumerationValue({
  required this.value,
  this.synonyms,
});