CSSBackground.url constructor
CSSBackground.url(
- CSSURL url, {
- CSSBackgroundBox? origin,
- CSSBackgroundBox? clip,
- CSSBackgroundAttachment? attachment,
- CSSBackgroundRepeat? repeat,
- String? position,
- String? size,
- CSSColor? color,
Implementation
CSSBackground.url(CSSURL url,
{CSSBackgroundBox? origin,
CSSBackgroundBox? clip,
CSSBackgroundAttachment? attachment,
CSSBackgroundRepeat? repeat,
String? position,
String? size,
this.color})
: _images = [
CSSBackgroundImage.url(url,
origin: origin,
clip: clip,
attachment: attachment,
repeat: repeat,
position: position,
size: size)
];