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