element property

  1. @override
PartElement? element
override

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

Implementation

@override
PartElement? get element {
  return super.element as PartElement?;
}
void element=(Element? element)
inherited

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

Implementation

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