Skip to content

Commit 95c7b1f

Browse files
authored
Make operator == parameter non-nullable (flutter#38663)
1 parent 41cfbdd commit 95c7b1f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/web_ui/lib/src/engine/canvaskit/noto_font.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ class CodeunitRange {
6565
}
6666

6767
@override
68-
bool operator ==(dynamic other) {
68+
bool operator ==(Object other) {
6969
if (other is! CodeunitRange) {
7070
return false;
7171
}

0 commit comments

Comments
 (0)