InnerShadowPlus constructor

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

Implementation

InnerShadowPlus({
  this.color = Colors.black,
  this.blur = 4,
  this.moveRight = 0,
  this.moveDown = 0,
  this.opacity,
});