Skip to content

Commit

Permalink
Merge pull request #98 from srawlins/patch-2
Browse files Browse the repository at this point in the history
== override parameters are non-nullable
  • Loading branch information
fzyzcjy authored Jan 17, 2023
2 parents 424d016 + ee393f1 commit 64d0f1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/widget_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2159,7 +2159,7 @@ class EntryBuildSpyCall {
final int value2;

@override
bool operator ==(dynamic o) =>
bool operator ==(Object o) =>
o is EntryBuildSpyCall && o.value1 == value1 && o.value2 == value2;

@override
Expand Down

0 comments on commit 64d0f1a

Please sign in to comment.