BoxShadow constructor

BoxShadow({
  1. Color? color,
  2. int? offsetX,
  3. int? offsetY,
  4. int? radius,
})

Implementation

BoxShadow({
  this.color,
  this.offsetX,
  this.offsetY,
  this.radius,
});