resolvedAnnotations property

List resolvedAnnotations

Implementation

List<dynamic> get resolvedAnnotations {
  return annotations
      .whereType<ResolvedAnnotation>()
      .map((a) => a.annotation)
      .toList();
}