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