Showing
1 changed file
with
3 additions
and
1 deletions
@@ -355,7 +355,9 @@ class TextStyle { | @@ -355,7 +355,9 @@ class TextStyle { | ||
355 | lineSpacing: other.lineSpacing, | 355 | lineSpacing: other.lineSpacing, |
356 | height: other.height, | 356 | height: other.height, |
357 | background: other.background, | 357 | background: other.background, |
358 | - decoration: decoration==null ? other.decoration : decoration!.merge(other.decoration), | 358 | + decoration: decoration == null |
359 | + ? other.decoration | ||
360 | + : decoration!.merge(other.decoration), | ||
359 | decorationColor: other.decorationColor, | 361 | decorationColor: other.decorationColor, |
360 | decorationStyle: other.decorationStyle, | 362 | decorationStyle: other.decorationStyle, |
361 | decorationThickness: other.decorationThickness, | 363 | decorationThickness: other.decorationThickness, |
-
Please register or login to post a comment