commit | 0439bf25d973066481b0a64f0d74fc93e8e61d01 | [log] [tgz] |
---|---|---|
author | Jason Simmons <jason-simmons@users.noreply.github.com> | Thu Apr 27 11:16:00 2017 -0700 |
committer | GitHub <noreply@github.com> | Thu Apr 27 11:16:00 2017 -0700 |
tree | 86bf65c8e7f1e5c5516db82074e0b0efe69ea065 | |
parent | 4bac2596172b6d60d3b26f1e79b0bdba0cdffe99 [diff] |
Fix an analyzer warning (#9643)
diff --git a/dev/integration_tests/channels/lib/main.dart b/dev/integration_tests/channels/lib/main.dart index 025f3e1..0042967 100644 --- a/dev/integration_tests/channels/lib/main.dart +++ b/dev/integration_tests/channels/lib/main.dart
@@ -185,7 +185,7 @@ floatingActionButton: new FloatingActionButton( key: const ValueKey<String>('step'), onPressed: _executeNextStep, - child: new Icon(Icons.navigate_next), + child: const Icon(Icons.navigate_next), ), ), );