element property

  1. @override
LibraryImportElement? element
override

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

Implementation

@override
LibraryImportElement? get element => super.element as LibraryImportElement?;
void element=(Element? element)
inherited

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

Implementation

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