Unverified Commit abb55cb6 authored by Amir Hardon's avatar Amir Hardon Committed by GitHub

fix wrong hashCode implementation in FakeMotionEvent (#21291)

parent 4a010665
......@@ -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() {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment