withFieldAnnotation<T> static method

Iterable<ArtifactTypeMirror> withFieldAnnotation<T>([
  1. Type? exactType
])

Implementation

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