SimpleShadow constructor

SimpleShadow({
  1. required Widget child,
  2. double opacity = 0.5,
  3. double sigma = 2,
  4. Color color = Colors.black,
  5. Offset offset = const Offset(2, 2),
})

Implementation

SimpleShadow({
  required this.child,
  this.opacity = 0.5,
  this.sigma = 2,
  this.color = Colors.black,
  this.offset = const Offset(2, 2),
});