ProsteShadowClip constructor

ProsteShadowClip({
  1. required List<Shadow> shadow,
  2. required CustomClipper<Path> clipper,
  3. required Widget child,
  4. Key? key,
  5. bool repaint = true,
})

Implementation

ProsteShadowClip({
  required this.shadow,
  required this.clipper,
  required this.child,
  this.key,
  this.repaint = true,
}) : super(key: key);