areAnnotatedWithStartingWith method

ClassPredicateBuilder areAnnotatedWithStartingWith(
  1. String prefix
)

Selects declarations annotated with a type name starting with prefix.

Implementation

ClassPredicateBuilder areAnnotatedWithStartingWith(String prefix) {
  return satisfy(_classAnnotatedWithStartingWith(prefix));
}