forked from firka/flutter
fix wrong hashCode implementation in FakeMotionEvent (#21291)
This commit is contained in:
@@ -203,7 +203,7 @@ class FakeMotionEvent {
|
||||
}
|
||||
|
||||
@override
|
||||
int get hashCode => hashValues(action, pointers, pointerIds);
|
||||
int get hashCode => hashValues(action, hashList(pointers), hashList(pointerIds));
|
||||
|
||||
@override
|
||||
String toString() {
|
||||
|
||||
Reference in New Issue
Block a user