documentationComment property

  1. @override
CommentImpl? documentationComment
override

Return the documentation comment associated with this node, or null if this node does not have a documentation comment associated with it.

Implementation

@override
CommentImpl? get documentationComment => _comment;
void documentationComment=(CommentImpl? comment)

Implementation

set documentationComment(CommentImpl? comment) {
  _comment = _becomeParentOf(comment);
}