withTarget method

AnnotationResult withTarget(
  1. String target
)

Replaces the target of all messages in this result with target.

Implementation

AnnotationResult withTarget(String target) {
  return AnnotationResult(messages: messages.map((e) => e.withTarget(target)).toList());
}