element property

  1. @override
AugmentationImportElementImpl? get element
override

Return the element associated with this directive, or null if the AST structure has not been resolved.

Implementation

@override
AugmentationImportElementImpl? get element {
  return super.element as AugmentationImportElementImpl?;
}
set element (Element? element)
inherited

Set the element associated with this directive to be the given element.

Implementation

set element(Element? element) {
  _element = element;
}