metadata property

  1. @override
List<ElementAnnotationImpl> get metadata
inherited

All of the metadata associated with this element.

The array will be empty if the element does not have any metadata or if the library containing this element has not yet been resolved.

Implementation

@override
List<ElementAnnotationImpl> get metadata {
  linkedData?.read(this);
  return super.metadata;
}
set metadata (List<ElementAnnotationImpl> metadata)
inherited

Implementation

set metadata(List<ElementAnnotationImpl> metadata) {
  _metadata = metadata;
}