CsShadow constructor

const CsShadow({
  1. Key? key,
  2. required BoxShadow shadow,
  3. required CustomClipper<Path> clipper,
  4. required Widget child,
})

Implementation

const CsShadow({
  Key? key,
  required this.shadow,
  required this.clipper,
  required this.child,
}) : super(key: key);