isIgnoreMapping static method

bool isIgnoreMapping(
  1. MethodElement method
)

Implementation

static bool isIgnoreMapping(MethodElement method) {
  final annotations = TypeChecker.fromRuntime(IgnoreMapping).annotationsOf(method);
  return annotations.isNotEmpty;
}