commentAnnotations property

List<Map<String, dynamic>> get commentAnnotations

Implementation

List<Map<String, dynamic>> get commentAnnotations => _commentAnnotations;
set commentAnnotations (List<Map<String, dynamic>> value)

Implementation

set commentAnnotations(List<Map<String, dynamic>> value) {
  if (!listEquals(_commentAnnotations, value)) {
    _commentAnnotations = value;
    _cachedCommentBoxes = null;
    markNeedsPaint();
  }
}