@@ -5,22 +5,30 @@ sealed class CssBackgroundClip implements CssValue {
55 const CssBackgroundClip ._();
66
77 /// The background extends to the outside edge of the border.
8- static const CssBackgroundClip borderBox = _CssBackgroundClipKeyword ('border-box' );
8+ static const CssBackgroundClip borderBox = _CssBackgroundClipKeyword (
9+ 'border-box' ,
10+ );
911
1012 /// The background extends to the outside edge of the padding.
11- static const CssBackgroundClip paddingBox = _CssBackgroundClipKeyword ('padding-box' );
13+ static const CssBackgroundClip paddingBox = _CssBackgroundClipKeyword (
14+ 'padding-box' ,
15+ );
1216
1317 /// The background extends to the outside edge of the content.
14- static const CssBackgroundClip contentBox = _CssBackgroundClipKeyword ('content-box' );
18+ static const CssBackgroundClip contentBox = _CssBackgroundClipKeyword (
19+ 'content-box' ,
20+ );
1521
1622 /// The background is clipped to the foreground text.
1723 static const CssBackgroundClip text = _CssBackgroundClipKeyword ('text' );
1824
1925 /// Multiple background-clip values for multiple background images.
20- factory CssBackgroundClip .multiple (List <CssBackgroundClip > values) = _CssBackgroundClipMultiple ;
26+ factory CssBackgroundClip .multiple (List <CssBackgroundClip > values) =
27+ _CssBackgroundClipMultiple ;
2128
2229 /// CSS variable reference.
23- factory CssBackgroundClip .variable (String varName) = _CssBackgroundClipVariable ;
30+ factory CssBackgroundClip .variable (String varName) =
31+ _CssBackgroundClipVariable ;
2432
2533 /// Raw CSS value escape hatch.
2634 factory CssBackgroundClip .raw (String value) = _CssBackgroundClipRaw ;
0 commit comments