maybeTransform method

AnnotationResult maybeTransform(
  1. AnnotationTransformer? func
)

Implementation

AnnotationResult maybeTransform(AnnotationTransformer? func) {
  if (func == null) return this;
  return func(this);
}