shouldBeIncluded method

bool shouldBeIncluded()

Implementation

bool shouldBeIncluded() {
  final isIgnored = hasAnnotation(annotations.ignore.runtimeType);
  return !(isStatic || isSynthetic || isIgnored);
}