getAnnotatedMethods<T> method
Implementation
Iterable<ArtifactAnnotatedMethod<T>> getAnnotatedMethods<T>([Type? t]) sync* {
for (ArtifactMethodMirror i in methods) {
if (i.hasAnnotation<T>(t)) {
for (T a in i.getAnnotations<T>(t)) {
yield ArtifactAnnotatedMethod<T>(a, i, instance);
}
}
}
}