Commit 8f7d0a45 authored by Jason Simmons's avatar Jason Simmons Committed by GitHub

Remove unnecessary type parameter (#7751)

parent 9119969a
...@@ -187,7 +187,7 @@ class _FlutterDriverExtension { ...@@ -187,7 +187,7 @@ class _FlutterDriverExtension {
}, description: 'widget with text tooltip "${arguments.text}"'); }, description: 'widget with text tooltip "${arguments.text}"');
} }
Finder _createByValueKeyFinder(ByValueKey<dynamic> arguments) { Finder _createByValueKeyFinder(ByValueKey arguments) {
switch (arguments.keyValueType) { switch (arguments.keyValueType) {
case 'int': case 'int':
return find.byKey(new ValueKey<int>(arguments.keyValue)); return find.byKey(new ValueKey<int>(arguments.keyValue));
......
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