argument property

AnnotationArgument? get argument

Implementation

AnnotationArgument? get argument => _argument;
set argument (AnnotationArgument? value)

Implementation

set argument(AnnotationArgument? value) {
  assert(_argument == null, 'Literal value already set');

  _argument = value;
}