EnumValue constructor

EnumValue({
  1. String? name,
  2. int? number,
  3. List<Option>? options,
})

Implementation

EnumValue({
  this.name,
  this.number,
  this.options,
});