getFirebaseRulesAnnotation function

DartObject? getFirebaseRulesAnnotation(
  1. ResolvedUnitResult resolved
)

Get the first FirebaseRules annotation in a file

Implementation

DartObject? getFirebaseRulesAnnotation(ResolvedUnitResult resolved) {
  for (final element in resolved.libraryElement.topLevelElements) {
    final annotation = firebaseRulesTypeChecker.firstAnnotationOfExact(element);
    if (annotation != null) return annotation;
  }
  return null;
}