Skip to content

Commit

Permalink
Update with_latest_from_test.dart: override == with Object param …
Browse files Browse the repository at this point in the history
…instead of `dynamic`
  • Loading branch information
hoc081098 committed Feb 19, 2024
1 parent d9c52f2 commit 60da732
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/transformers/with_latest_from_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -492,7 +492,7 @@ class _Tuple {
]);

@override
bool operator ==(dynamic other) {
bool operator ==(Object other) {
return identical(this, other) ||
other is _Tuple &&
item1 == other.item1 &&
Expand Down

0 comments on commit 60da732

Please sign in to comment.