AnnotationValue constructor

AnnotationValue({
  1. bool? booleanValue,
  2. double? numberValue,
  3. String? stringValue,
})

Implementation

AnnotationValue({
  this.booleanValue,
  this.numberValue,
  this.stringValue,
});