From 0439bf25d973066481b0a64f0d74fc93e8e61d01 Mon Sep 17 00:00:00 2001 From: Jason Simmons Date: Thu, 27 Apr 2017 11:16:00 -0700 Subject: [PATCH] Fix an analyzer warning (#9643) --- dev/integration_tests/channels/lib/main.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev/integration_tests/channels/lib/main.dart b/dev/integration_tests/channels/lib/main.dart index 025f3e1e7f..004296752b 100644 --- a/dev/integration_tests/channels/lib/main.dart +++ b/dev/integration_tests/channels/lib/main.dart @@ -185,7 +185,7 @@ class _TestAppState extends State { floatingActionButton: new FloatingActionButton( key: const ValueKey('step'), onPressed: _executeNextStep, - child: new Icon(Icons.navigate_next), + child: const Icon(Icons.navigate_next), ), ), );