blob: c9c40ecc3b0426826a02d3fe3857b1fdc457f8b5 [file] [log] [blame]
>>>
Annotation _getAnnotation(AnnotatedNode node, String name) => nodeMetadata
.firstWhere((annotation) => _isAnnotationType(annotation, name),
orElse: () => null);
<<<
Annotation _getAnnotation(AnnotatedNode node, String name) => nodeMetadata
.firstWhere(
(annotation) => _isAnnotationType(annotation, name),
orElse: () => null,
);
>>> (indent 2)
Annotation _getAnnotation(AnnotatedNode node, String name) => nodeMetadata
.firstWhere((annotation) => _isAnnotationType(annotation, name),
orElse: () => null);
<<<
Annotation _getAnnotation(AnnotatedNode node, String name) => nodeMetadata
.firstWhere(
(annotation) => _isAnnotationType(annotation, name),
orElse: () => null,
);