element property
Return the element associated with this directive, or null
if the AST
structure has not been resolved.
Implementation
@override
LibraryExportElementImpl? get element {
return super.element as LibraryExportElementImpl?;
}
set
element
(Element? element)
inherited
Set the element associated with this directive to be the given element
.
Implementation
set element(Element? element) {
_element = element;
}