From f9a7b67a1f723c914d3ba422ea89426e74af405a Mon Sep 17 00:00:00 2001 From: Liam Appelbe Date: Wed, 17 Apr 2024 18:12:32 -0700 Subject: [PATCH] Fix nullability analysis error (#484) --- lib/src/chrome.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/chrome.dart b/lib/src/chrome.dart index 88ec1b32..2a976967 100644 --- a/lib/src/chrome.dart +++ b/lib/src/chrome.dart @@ -166,6 +166,6 @@ class _Position { int get hashCode => Object.hash(line, column); @override - bool operator ==(dynamic o) => + bool operator ==(Object o) => o is _Position && o.line == line && o.column == column; }