expandedAnnotationsOf<T> method

Iterable<T> expandedAnnotationsOf<T>()

Implementation

Iterable<T> expandedAnnotationsOf<T>() => [
  ...enclosingClass.annotationsOf<T>(),
  ...annotationsOf<T>()
];