fix wrong hashCode implementation in FakeMotionEvent (#21291)

This commit is contained in:
Amir Hardon
2018-08-31 16:16:37 -07:00
committed by GitHub
parent 4a0106658f
commit abb55cb649

View File

@@ -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() {