ShadowPlus constructor

ShadowPlus({
  1. Color color = Colors.black,
  2. double blur = 5,
  3. double spread = 1,
  4. double moveRight = 0,
  5. double moveDown = 0,
  6. double? opacity,
})

Implementation

ShadowPlus({
  this.color = Colors.black,
  this.blur = 5,
  this.spread = 1,
  this.moveRight = 0,
  this.moveDown = 0,
  this.opacity,
});