Fix analyzer "prefer const" warning. (#25854)

This commit is contained in:
Amir Hardon 2018-12-28 14:05:19 -08:00 committed by GitHub
parent 63b2daff7f
commit 0220412c53
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -13,7 +13,7 @@ class _CullOpacityPageState extends State<CullOpacityPage> with SingleTickerProv
void initState() {
super.initState();
_controller = AnimationController(vsync: this, duration: Duration(seconds: 2));
_controller = AnimationController(vsync: this, duration: const Duration(seconds: 2));
_offsetY = Tween<double>(begin: 0, end: -1000.0).animate(_controller)..addListener((){
setState(() {});
});