Shadow constructor

const Shadow({
  1. double? offsetX,
  2. double? offsetY,
  3. double? blurRadius,
  4. double? spreadRadius,
  5. Color? color,
})

Create a new shadow.

Implementation

const Shadow({
  this.offsetX,
  this.offsetY,
  this.blurRadius,
  this.spreadRadius,
  this.color,
});