diff --git a/lib/src/guide/annotation/custom.dart b/lib/src/guide/annotation/custom.dart index 7473f38..fe879e4 100644 --- a/lib/src/guide/annotation/custom.dart +++ b/lib/src/guide/annotation/custom.dart @@ -27,7 +27,8 @@ class CustomAnnotation extends ElementAnnotation { List Function(Offset, Size) renderer; @override - bool operator ==(Object other) => other is CustomAnnotation && super == other; + bool operator ==(Object other) => + other is CustomAnnotation && super == other && values == other.values; } /// The custom element annotation operator.