CSSBoxDecoration constructor
CSSBoxDecoration({
- Color? color,
- DecorationImage? image,
- BoxBorder? border,
- BorderRadius? borderRadius,
- List<
KrakenBoxShadow> ? boxShadow, - Gradient? gradient,
- BlendMode? backgroundBlendMode,
- BoxShape shape = BoxShape.rectangle,
Implementation
CSSBoxDecoration({
this.color,
this.image,
this.border,
this.borderRadius,
this.boxShadow,
this.gradient,
this.backgroundBlendMode,
this.shape = BoxShape.rectangle,
}): super(color: color, image: image, border: border, borderRadius: borderRadius,
gradient: gradient, backgroundBlendMode: backgroundBlendMode, shape: shape);