element property

  1. @override
Element? element
override

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

Implementation

@override
Element? get element => _element;
void element=(Element? element)

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

Implementation

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