WebFBoxShadow constructor

const WebFBoxShadow({
  1. Color color = const Color(_kColorDefault),
  2. Offset offset = Offset.zero,
  3. double blurRadius = 0.0,
  4. double spreadRadius = 0.0,
  5. bool inset = false,
})

Creates a box shadow.

By default, the shadow is solid black with zero offset, blurRadius, and spreadRadius.

Implementation

const WebFBoxShadow({
  super.color,
  super.offset,
  super.blurRadius,
  super.spreadRadius,
  this.inset = false,
});