documentationComment property
The documentation comment associated with this element if it has one.
This is the text of the comment, including any leading ///
or /**
Implementation
@override
String? get documentationComment => _documentationComment;
set
documentationComment
(String? documentationComment)
Implementation
set documentationComment(String? documentationComment) {
_documentationComment = documentationComment;
}