Clean up syntax as suggested by sethladd

R=sethladd@google.com, sethladd

Review URL: https://codereview.chromium.org/1159763003
This commit is contained in:
Collin Jackson 2015-05-26 10:20:37 -07:00
parent 2470cdcafa
commit 3976cd7b28

View file

@ -11,11 +11,9 @@ class RenderSolidColor extends RenderDecoratedBox {
final double desiredWidth;
final int backgroundColor;
RenderSolidColor(int backgroundColor, { double desiredHeight: double.INFINITY,
double desiredWidth: double.INFINITY })
: desiredHeight = desiredHeight,
desiredWidth = desiredWidth,
backgroundColor = backgroundColor,
RenderSolidColor(int backgroundColor, { this.desiredHeight: double.INFINITY,
this.desiredWidth: double.INFINITY })
: backgroundColor = backgroundColor,
super(new BoxDecoration(backgroundColor: backgroundColor));
BoxDimensions getIntrinsicDimensions(BoxConstraints constraints) {