Fix indent

This commit is contained in:
Adam Barth 2015-09-25 15:43:03 -07:00
parent e1b8f0b659
commit 24171915aa

View File

@ -5,12 +5,12 @@
import 'package:sky/src/fn3.dart';
abstract class UniqueComponent<T extends State> extends StatefulComponent {
UniqueComponent({ GlobalKey key }) : super(key: key ?? new GlobalKey());
UniqueComponent({ GlobalKey key }) : super(key: key ?? new GlobalKey());
T createState();
T createState();
T get currentState {
GlobalKey globalKey = key;
return globalKey.currentState;
}
T get currentState {
GlobalKey globalKey = key;
return globalKey.currentState;
}
}