Commit af4905ff authored by P.Y. Laligand's avatar P.Y. Laligand Committed by Andrew Wilson

Fixed analysis error. (#10035)

parent 5bce52d6
...@@ -112,7 +112,7 @@ class _ExpansionTileState extends State<ExpansionTile> with SingleTickerProvider ...@@ -112,7 +112,7 @@ class _ExpansionTileState extends State<ExpansionTile> with SingleTickerProvider
if (_isExpanded) if (_isExpanded)
_controller.forward(); _controller.forward();
else else
_controller.reverse().then((Null value) { _controller.reverse().then<Null>((Null value) {
setState(() { setState(() {
// Rebuild without widget.children. // Rebuild without widget.children.
}); });
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment