Fix missing const analyzer warning (#26716)

Introduced by merging an old PR (https://github.com/flutter/flutter/pull/21157).
This commit is contained in:
Michael Goderbauer 2019-01-17 12:23:55 -08:00 committed by GitHub
parent 649f49d4bf
commit 975ea595e9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -91,8 +91,8 @@ void main() {
notification = value;
return false;
},
child: SingleChildScrollView(
child: const SizedBox(height: 1200.0)
child: const SingleChildScrollView(
child: SizedBox(height: 1200.0)
)
));