withMethodAnnotation<T> static method
Implementation
static Iterable<ArtifactTypeMirror> withMethodAnnotation<T>([
Type? exactType,
]) sync* {
for (MapEntry<Type, $AClass> entry
in ArtifactAccessor.withMethodAnnotation<T>(exactType)) {
yield ArtifactTypeMirror(entry.value.classType, entry.value);
}
}