Shadow constructor

const Shadow({
  1. Color? color,
  2. double spread = 1,
  3. Offset offset = const Offset(0, 0),
  4. double inflate = 0,
  5. double radius = 0,
})

Implementation

const Shadow({
  this.color,
  this.spread = 1,
  this.offset = const Offset(0, 0),
  this.inflate = 0,
  this.radius = 0,
});