operator + method
Combines this with another AnnotationResultLike.
Implementation
@override
AnnotationResult operator +(AnnotationResultLike? other) {
return AnnotationResult(messages: [this, ...?other?.asAnnotationResult().messages]);
}
Combines this with another AnnotationResultLike.
@override
AnnotationResult operator +(AnnotationResultLike? other) {
return AnnotationResult(messages: [this, ...?other?.asAnnotationResult().messages]);
}