features property

  1. @override
Set<Feature> features
override

Usually a superset of annotations except where _specialFeatures replace them, a list of annotations as well as tags applied by Dartdoc itself when it notices characteristics of an element that need to be documented. See Feature for a list.

Implementation

@override
Set<Feature> get features => {
      ...super.features,
      if (isExtended) Feature.extended,
    };