Enum constructor

Enum({
  1. String? edition,
  2. List<EnumValue>? enumvalue,
  3. String? name,
  4. List<Option>? options,
  5. SourceContext? sourceContext,
  6. String? syntax,
})

Implementation

Enum({
  this.edition,
  this.enumvalue,
  this.name,
  this.options,
  this.sourceContext,
  this.syntax,
});