CustomShaper constructor

const CustomShaper({
  1. Key? key,
  2. required CustomClipper<Path> clipper,
  3. Widget? child,
  4. Color color = Colors.blue,
  5. double width = 100,
  6. double height = 100,
})

Implementation

const CustomShaper({
  super.key,
  required this.clipper,
  this.child,
  this.color = Colors.blue,
  this.width = 100,
  this.height = 100,
});