CSSBoxShadow constructor

CSSBoxShadow({
  1. Color? color,
  2. CSSLengthValue? offsetX,
  3. CSSLengthValue? offsetY,
  4. CSSLengthValue? blurRadius,
  5. CSSLengthValue? spreadRadius,
  6. bool inset = false,
})

Implementation

CSSBoxShadow({
  this.color,
  this.offsetX,
  this.offsetY,
  this.blurRadius,
  this.spreadRadius,
  this.inset = false,
});