From d1a10b10bab7ad5c433635a088aed187fa8e4cf3 Mon Sep 17 00:00:00 2001 From: Adam Barth Date: Fri, 2 Oct 2015 23:10:15 -0700 Subject: [PATCH] Use `}) : super` consistently Fixes #1372 --- engine/src/flutter/examples/address_book/lib/main.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/src/flutter/examples/address_book/lib/main.dart b/engine/src/flutter/examples/address_book/lib/main.dart index 636df805133..c12a7d2114b 100644 --- a/engine/src/flutter/examples/address_book/lib/main.dart +++ b/engine/src/flutter/examples/address_book/lib/main.dart @@ -11,7 +11,7 @@ class Field extends StatelessComponent { this.inputKey, this.icon, this.placeholder - }): super(key: key); + }) : super(key: key); final GlobalKey inputKey; final String icon;