EnumValue constructor

const EnumValue(
  1. String name, {
  2. Iterable<Docs> docs = const [],
  3. Iterable<Annotation> annotations = const [],
  4. Iterable<Builder> arguments = const [],
})

Configuration for defining an enum value.

Implementation

const EnumValue(
  this.name, {
  this.docs = const [],
  this.annotations = const [],
  this.arguments = const [],
});