EnumValue constructor

const EnumValue({
  1. String? readable,
  2. String? description,
  3. int? intValue,
  4. Object? serializedValue,
  5. bool? useDocCommentAsDescription,
  6. List<Extension<Object?>>? extensions,
})

Annotation to assist in generating code for enum values.

Implementation

const EnumValue({
  this.readable,
  this.description,
  this.intValue,
  this.serializedValue,
  this.useDocCommentAsDescription,
  this.extensions,
});