documentationComment property

  1. @override
String? documentationComment
inherited

The content of the documentation comment (including delimiters) for this element, or null if this element does not or cannot have documentation.

Implementation

@override
String? get documentationComment => _docComment;
void documentationComment=(String? doc)
inherited

The documentation comment source for this element.

Implementation

set documentationComment(String? doc) {
  _docComment = doc;
}