Make ParagraphConstraints have const constructor (flutter/engine#7346)

This commit is contained in:
Dan Field 2019-01-07 08:51:47 -08:00 committed by GitHub
parent 708bc41304
commit c00f855ac5

View File

@ -984,7 +984,7 @@ class ParagraphConstraints {
/// Creates constraints for laying out a pargraph.
///
/// The [width] argument must not be null.
ParagraphConstraints({
const ParagraphConstraints({
this.width,
}) : assert(width != null);